diff options
-rw-r--r-- | src/Main/Forms/PreferencesDialog.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Main/Forms/PreferencesDialog.cpp b/src/Main/Forms/PreferencesDialog.cpp index 50c9c300..e22e304b 100644 --- a/src/Main/Forms/PreferencesDialog.cpp +++ b/src/Main/Forms/PreferencesDialog.cpp @@ -154,7 +154,7 @@ namespace VeraCrypt Gui->SetListCtrlColumnWidths (HotkeyListCtrl, colPermilles); RestoreValidatorBell = !wxTextValidator::IsSilent(); - wxTextValidator::SetBellOnError (true); + wxTextValidator::SuppressBellOnError (true); HotkeyTextCtrl->SetValidator (wxTextValidator (wxFILTER_INCLUDE_CHAR_LIST)); UpdateHotkeyButtons(); @@ -203,8 +203,10 @@ namespace VeraCrypt PreferencesDialog::~PreferencesDialog () { +#ifdef TC_WINDOWS if (RestoreValidatorBell) - wxTextValidator::SetBellOnError (false); + wxTextValidator::SuppressBellOnError (false); +#endif } void PreferencesDialog::SelectPage (wxPanel *page) |