diff options
author | 2021-05-05 13:25:17 +0530 | |
---|---|---|
committer | 2021-05-05 13:25:17 +0530 | |
commit | 99691588563ccb0140bbfd00969c6be41316da27 (patch) | |
tree | a47ddfa1f4c641642bc597047ca40bb52c6a54f5 /src/settingswidget.cpp | |
parent | d867686d07c00f499b99d796cf7ce260b2579050 (diff) | |
download | whatsie-99691588563ccb0140bbfd00969c6be41316da27.tar.gz whatsie-99691588563ccb0140bbfd00969c6be41316da27.zip |
use non native file picker by default. since the native one is buggy.
Diffstat (limited to 'src/settingswidget.cpp')
-rw-r--r-- | src/settingswidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/settingswidget.cpp b/src/settingswidget.cpp index 40c6c5b..79394aa 100644 --- a/src/settingswidget.cpp +++ b/src/settingswidget.cpp @@ -28,7 +28,7 @@ SettingsWidget::SettingsWidget(QWidget *parent, QString engineCachePath, QString ui->enableSpellCheck->setChecked(settings.value("sc_enabled",true).toBool()); ui->notificationTimeOutspinBox->setValue(settings.value("notificationTimeOut",9000).toInt()/1000); ui->notificationCombo->setCurrentIndex(settings.value("notificationCombo",1).toInt()); - ui->useNativeFileDialog->setChecked(settings.value("useNativeFileDialog",true).toBool()); + ui->useNativeFileDialog->setChecked(settings.value("useNativeFileDialog",false).toBool()); ui->automaticThemeCheckBox->blockSignals(true); bool automaticThemeSwitching = settings.value("automaticTheme",false).toBool(); |