summaryrefslogtreecommitdiff
path: root/src/settings.h
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2019-12-04 12:42:15 -0500
committerisanae <14251494+isanae@users.noreply.github.com>2019-12-04 13:23:02 -0500
commita0fa896e68856ec5204e7f74db775bdb3595010a (patch)
tree424496627105af026cb845068c21358f27fbb2e3 /src/settings.h
parentb209a8e47f866a129c53cef43539e96ab8722405 (diff)
added open previews on double-click option
implemented for filetree
Diffstat (limited to 'src/settings.h')
-rw-r--r--src/settings.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/settings.h b/src/settings.h
index 870e0fc4..0e5238b1 100644
--- a/src/settings.h
+++ b/src/settings.h
@@ -608,7 +608,12 @@ public:
// whether to show the confirmation when switching instances
//
bool showChangeGameConfirmation() const;
- void setShowChangeGameConfirmation(bool b) const;
+ void setShowChangeGameConfirmation(bool b);
+
+ // whether double-clicks on files should try to open previews first
+ //
+ bool doubleClicksOpenPreviews() const;
+ void setDoubleClicksOpenPreviews(bool b);
private:
QSettings& m_Settings;