diff --git a/src/Config.h b/src/Config.h index 2d32b0b0..5d26cd6b 100644 --- a/src/Config.h +++ b/src/Config.h @@ -35,7 +35,7 @@ #define VER_LAMEXP_MINOR_LO 9 #define VER_LAMEXP_TYPE RC #define VER_LAMEXP_PATCH 3 -#define VER_LAMEXP_BUILD 2294 +#define VER_LAMEXP_BUILD 2295 #define VER_LAMEXP_CONFG 2188 /////////////////////////////////////////////////////////////////////////////// diff --git a/src/Dialog_About.cpp b/src/Dialog_About.cpp index ed62a14f..b8e3b131 100644 --- a/src/Dialog_About.cpp +++ b/src/Dialog_About.cpp @@ -331,8 +331,11 @@ void AboutDialog::tabChanged(int index, const bool silent) qApp->restoreOverrideCursor(); } - //Play tick sound - PLAY_SOUND_OPTIONAL("tick", true); + //Play tick sound, unless silent + if (!silent) + { + PLAY_SOUND_OPTIONAL("tick", true); + } //Scroll to the top if(QWidget *tab = ui->tabWidget->widget(index))