[Scummvm-git-logs] scummvm master -> ff3056165bbe4299741e613a3fda26a2bd96fb6e
tsoliman
tarek at bashasoliman.com
Tue Dec 18 23:42:54 CET 2018
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
ff3056165b GUI: Fix defaulting of "Use native system file browser" checkbox
Commit: ff3056165bbe4299741e613a3fda26a2bd96fb6e
https://github.com/scummvm/scummvm/commit/ff3056165bbe4299741e613a3fda26a2bd96fb6e
Author: Tarek Soliman (tsoliman at scummvm.org)
Date: 2018-12-18T16:41:02-06:00
Commit Message:
GUI: Fix defaulting of "Use native system file browser" checkbox
Changed paths:
gui/options.cpp
diff --git a/gui/options.cpp b/gui/options.cpp
index f1efacd..8d2bda5 100644
--- a/gui/options.cpp
+++ b/gui/options.cpp
@@ -1711,9 +1711,7 @@ void GlobalOptionsDialog::build() {
_("Use the native system file browser instead of the ScummVM one to select a file or directory.")
);
- if (ConfMan.hasKey("gui_browser_native")) {
- _useSystemDialogsCheckbox->setState(ConfMan.getBool("gui_browser_native", _domain));
- }
+ _useSystemDialogsCheckbox->setState(ConfMan.getBool("gui_browser_native", _domain));
}
#ifdef USE_UPDATES
More information about the Scummvm-git-logs
mailing list