diff options
-rw-r--r-- | TODO | 1 | ||||
-rw-r--r-- | mainwindow.cpp | 2 | ||||
-rwxr-xr-x | settingsdialog.cpp | 2 |
3 files changed, 3 insertions, 2 deletions
@@ -21,6 +21,7 @@ Release 0.3.2 - or set margin to make it easier selectable [DONE] - remove whitespaces on copy [DONE] - remove iconpath and use ressource file instead [DONE] +- change default iconsize to 24x24 [DONE] - restart gpg4usb on language change [DONE] - option in settingsdialog for enabling steganographic operations [DONE] - minimal steganography option: remove or add pgp-headers on demand [DONE] diff --git a/mainwindow.cpp b/mainwindow.cpp index 36e4e5e..7f827e3 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -98,7 +98,7 @@ void MainWindow::restoreSettings() } // Iconsize - QSize iconSize = settings.value("toolbar/iconsize", QSize(32, 32)).toSize(); + QSize iconSize = settings.value("toolbar/iconsize", QSize(24, 24)).toSize(); this->setIconSize(iconSize); // set list of keyserver if not defined diff --git a/settingsdialog.cpp b/settingsdialog.cpp index 84b78fd..ccd6ee9 100755 --- a/settingsdialog.cpp +++ b/settingsdialog.cpp @@ -343,7 +343,7 @@ void AppearanceTab::setSettings() QSettings settings; //Iconsize - QSize iconSize = settings.value("toolbar/iconsize", QSize(32, 32)).toSize(); + QSize iconSize = settings.value("toolbar/iconsize", QSize(24, 24)).toSize(); switch (iconSize.height()) { case 12: iconSizeSmall->setChecked(true); break; |