From 134117b558571c60926d97dfe585143643448113 Mon Sep 17 00:00:00 2001 From: borgmanJeremy <46930769+borgmanJeremy@users.noreply.github.com> Date: Thu, 6 Oct 2022 12:29:08 -0500 Subject: [PATCH] Fix checkbox not initializing properly (#2940) --- src/config/generalconf.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config/generalconf.cpp b/src/config/generalconf.cpp index bd6f032f..fa679691 100644 --- a/src/config/generalconf.cpp +++ b/src/config/generalconf.cpp @@ -81,6 +81,7 @@ void GeneralConf::_updateComponents(bool allowEmptySavePath) m_copyPathAfterSave->setChecked(config.copyPathAfterSave()); m_antialiasingPinZoom->setChecked(config.antialiasingPinZoom()); m_useJpgForClipboard->setChecked(config.useJpgForClipboard()); + m_copyOnDoubleClick->setChecked(config.copyOnDoubleClick()); m_uploadWithoutConfirmation->setChecked(config.uploadWithoutConfirmation()); m_historyConfirmationToDelete->setChecked( config.historyConfirmationToDelete());