summaryrefslogtreecommitdiff
path: root/src/settings.cpp
diff options
context:
space:
mode:
authorAl <gabriel.cortesi@outlook.com>2019-12-08 21:05:58 +0100
committerAl <gabriel.cortesi@outlook.com>2019-12-08 21:05:58 +0100
commit8c3a3e8257e63328298c91c71740ac3a550b70d6 (patch)
treec73a2af84ef4ecda6343805a9e1a192150a21794 /src/settings.cpp
parent2c59d13be645bb8c12adae883938c9a8652f3dee (diff)
Changed default behavior for "Open Previews on double click" to true
since it's probably the most desirable option.
Diffstat (limited to 'src/settings.cpp')
-rw-r--r--src/settings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/settings.cpp b/src/settings.cpp
index 68dc19d9..5170a5de 100644
--- a/src/settings.cpp
+++ b/src/settings.cpp
@@ -1973,7 +1973,7 @@ void InterfaceSettings::setShowChangeGameConfirmation(bool b)
bool InterfaceSettings::doubleClicksOpenPreviews() const
{
- return get<bool>(m_Settings, "Settings", "double_click_previews", false);
+ return get<bool>(m_Settings, "Settings", "double_click_previews", true);
}
void InterfaceSettings::setDoubleClicksOpenPreviews(bool b)