[core/theme] Make theme iconsets *not* override settings
Make sure that iconsets used as part of a theme do *not* override anything already existing inside the theme. Only iconsets that are manually specified can override settings in the theme now (because those, you typically specify on the CLI). TODO: Write unit test for this fixes #666
This commit is contained in:
parent
8f3d48c0e6
commit
320bba97d0
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ class Theme(object):
|
|||
self.__data = raw_data if raw_data else self.load(name)
|
||||
|
||||
for icons in self.__data.get("icons", []):
|
||||
self.__data = util.algorithm.merge(self.load(icons, "icons"), self.__data)
|
||||
util.algorithm.merge(self.load(icons, "icons"), self.__data)
|
||||
if iconset != "auto":
|
||||
self.__data = util.algorithm.merge(self.load(iconset, "icons"), self.__data)
|
||||
for colors in self.__data.get("colors", []):
|
||||
|
|
Loading…
Reference in a new issue