diff options
Diffstat (limited to 'plugins/Dbx_mdbx/src/ui.h')
-rw-r--r-- | plugins/Dbx_mdbx/src/ui.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/Dbx_mdbx/src/ui.h b/plugins/Dbx_mdbx/src/ui.h index cfaf03b417..dc1a87c2e9 100644 --- a/plugins/Dbx_mdbx/src/ui.h +++ b/plugins/Dbx_mdbx/src/ui.h @@ -26,7 +26,9 @@ class COptionsDialog : public CDlgBase void OnApply()
{
+ SetCursor(LoadCursor(nullptr, IDC_WAIT));
m_db->EnableEncryption(m_chkTotal.GetState() != 0);
+ SetCursor(LoadCursor(nullptr, IDC_ARROW));
m_chkStandart.SetState(!m_db->isEncrypted());
m_chkTotal.SetState(m_db->isEncrypted());
}
|