From d8443a79d7c7bda64283da0337a04d8aed634dcf Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sun, 15 Apr 2018 13:34:49 +0300 Subject: fixes #1230 (Database encryption mode) --- plugins/Dbx_mdbx/src/ui.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'plugins/Dbx_mdbx/src/ui.h') 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()); } -- cgit v1.2.3