diff options
| author | Al <gabriel.cortesi@outlook.com> | 2019-12-08 21:05:58 +0100 |
|---|---|---|
| committer | Al <gabriel.cortesi@outlook.com> | 2019-12-08 21:05:58 +0100 |
| commit | 8c3a3e8257e63328298c91c71740ac3a550b70d6 (patch) | |
| tree | c73a2af84ef4ecda6343805a9e1a192150a21794 | |
| parent | 2c59d13be645bb8c12adae883938c9a8652f3dee (diff) | |
Changed default behavior for "Open Previews on double click" to true
since it's probably the most desirable option.
| -rw-r--r-- | src/settings.cpp | 2 |
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) |
