[Scummvm-cvs-logs] scummvm master -> 2e675468520b387dfe834fb63e0780c8fd492143

sev- sev at scummvm.org
Mon Jun 6 22:45:16 CEST 2016


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:
2e67546852 GUI: Do not change aspect ratio setting when it is disabled


Commit: 2e675468520b387dfe834fb63e0780c8fd492143
    https://github.com/scummvm/scummvm/commit/2e675468520b387dfe834fb63e0780c8fd492143
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2016-06-06T22:44:41+02:00

Commit Message:
GUI: Do not change aspect ratio setting when it is disabled

Changed paths:
    gui/options.cpp



diff --git a/gui/options.cpp b/gui/options.cpp
index ec4cd7b..e410971 100644
--- a/gui/options.cpp
+++ b/gui/options.cpp
@@ -213,7 +213,7 @@ void OptionsDialog::open() {
 #ifdef GUI_ONLY_FULLSCREEN
 		_fullscreenCheckbox->setState(true);
 		_fullscreenCheckbox->setEnabled(false);
-		_aspectCheckbox->setState(false);
+		_aspectCheckbox->setState(ConfMan.getBool("aspect_ratio", _domain));
 		_aspectCheckbox->setEnabled(false);
 #else // !GUI_ONLY_FULLSCREEN
 		// Fullscreen setting






More information about the Scummvm-git-logs mailing list