diff options
author | 2021-04-11 02:52:45 +0530 | |
---|---|---|
committer | 2021-04-11 02:52:45 +0530 | |
commit | 761548792a525b30b4e3f85f8cdc675ae4db06cb (patch) | |
tree | 5a1142b85f6e50805a651f4acc1da07d060e6ee6 /src/settingswidget.h | |
parent | 6a1f5875742f7f77cd6af623deb0a1c79bbb79f6 (diff) | |
download | whatsie-761548792a525b30b4e3f85f8cdc675ae4db06cb.tar.gz whatsie-761548792a525b30b4e3f85f8cdc675ae4db06cb.zip |
implemented notification timeout spinbox in settings
Diffstat (limited to 'src/settingswidget.h')
-rw-r--r-- | src/settingswidget.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/settingswidget.h b/src/settingswidget.h index 737b987..ff33b04 100644 --- a/src/settingswidget.h +++ b/src/settingswidget.h @@ -26,6 +26,8 @@ signals: void init_lock(); void dictChanged(QString dict); void spellCheckChanged(bool checked); + void notificationPopupTimeOutChanged(); + public: explicit SettingsWidget(QWidget *parent = nullptr,QString engineCachePath = "", QString enginePersistentStoragePath = ""); @@ -73,6 +75,8 @@ private slots: void on_showPermissionsButton_clicked(); + void on_notificationTimeOutspinBox_valueChanged(int arg1); + private: Ui::SettingsWidget *ui; QString engineCachePath,enginePersistentStoragePath; |