[core/theme] make iconsets take precedence over "main" theme

see #648
This commit is contained in:
tobi-wan-kenobi 2020-06-05 20:10:50 +02:00
parent cb9a60668a
commit 034e8eefb9

View file

@ -52,7 +52,7 @@ class Theme(object):
self.__value_idx = {}
self.__data = raw_data if raw_data else self.load(name)
if iconset != "auto":
util.algorithm.merge(self.__data, self.load(iconset, "icons"))
self.__data = util.algorithm.merge(self.load(iconset, "icons"), self.__data)
for icons in self.__data.get("icons", []):
util.algorithm.merge(self.__data, self.load(icons, "icons"))
for colors in self.__data.get("colors", []):