[Scummvm-git-logs] scummvm master -> 1146f3d72d8c2b701be3c62123ccd299c4ac5615
bluegr
noreply at scummvm.org
Fri Jun 10 20:10:54 UTC 2022
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:
1146f3d72d GUI: Fix iconpath iconspath Confman key discrepancy
Commit: 1146f3d72d8c2b701be3c62123ccd299c4ac5615
https://github.com/scummvm/scummvm/commit/1146f3d72d8c2b701be3c62123ccd299c4ac5615
Author: Athanasios Antoniou (a.antoniou79 at gmail.com)
Date: 2022-06-10T23:10:51+03:00
Commit Message:
GUI: Fix iconpath iconspath Confman key discrepancy
Fixes issue with unable to download icons update (from Misc Tab) even though an icons path is set in Paths tab.
Changed paths:
gui/options.cpp
diff --git a/gui/options.cpp b/gui/options.cpp
index 0a0560f1d97..803c44f4776 100644
--- a/gui/options.cpp
+++ b/gui/options.cpp
@@ -2216,7 +2216,7 @@ void GlobalOptionsDialog::build() {
setPath(_savePath, "savepath", _("Default"));
setPath(_themePath, "themepath", _c("None", "path"));
- setPath(_iconPath, "iconpath", _c("None", "path"));
+ setPath(_iconPath, "iconspath", _c("None", "path"));
setPath(_extraPath, "extrapath", _c("None", "path"));
#ifdef DYNAMIC_MODULES
@@ -2709,7 +2709,7 @@ void GlobalOptionsDialog::apply() {
changePath(_savePath, "savepath", _("Default"));
changePath(_themePath, "themepath", _c("None", "path"));
- changePath(_iconPath, "iconpath", _c("None", "path"));
+ changePath(_iconPath, "iconspath", _c("None", "path"));
changePath(_extraPath, "extrapath", _c("None", "path"));
#ifdef DYNAMIC_MODULES
More information about the Scummvm-git-logs
mailing list