[Scummvm-git-logs] scummvm branch-2-6 -> 63e41ea0784909d48cc86d6d39db08bf39608b7a

antoniou79 noreply at scummvm.org
Sat Jun 11 05:41:18 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:
63e41ea078 GUI: Fix iconpath iconspath Confman key discrepancy 


Commit: 63e41ea0784909d48cc86d6d39db08bf39608b7a
    https://github.com/scummvm/scummvm/commit/63e41ea0784909d48cc86d6d39db08bf39608b7a
Author: Athanasios Antoniou (a.antoniou79 at gmail.com)
Date: 2022-06-11T08:41:00+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