--- a/eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py Sun Apr 12 18:46:08 2020 +0200 +++ b/eric6/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py Sun Apr 12 19:07:49 2020 +0200 @@ -45,8 +45,8 @@ self.__patches = patchesList[:] self.patchSelector.addItems([""] + self.__patches) - self.plusButton.setIcon(UI.PixmapCache.getIcon("plus.png")) - self.minusButton.setIcon(UI.PixmapCache.getIcon("minus.png")) + self.plusButton.setIcon(UI.PixmapCache.getIcon("plus")) + self.minusButton.setIcon(UI.PixmapCache.getIcon("minus")) self.__dirtyList = False self.__currentPatch = "" @@ -141,11 +141,11 @@ guardsList = guards.strip().split() for guard in guardsList: if guard.startswith("+"): - icon = UI.PixmapCache.getIcon("plus.png") + icon = UI.PixmapCache.getIcon("plus") guard = guard[1:] sign = "+" elif guard.startswith("-"): - icon = UI.PixmapCache.getIcon("minus.png") + icon = UI.PixmapCache.getIcon("minus") guard = guard[1:] sign = "-" else: @@ -193,10 +193,10 @@ guard = self.guardCombo.currentText() if self.plusButton.isChecked(): sign = "+" - icon = UI.PixmapCache.getIcon("plus.png") + icon = UI.PixmapCache.getIcon("plus") else: sign = "-" - icon = UI.PixmapCache.getIcon("minus.png") + icon = UI.PixmapCache.getIcon("minus") guardItem = self.__getGuard(guard) if guardItem: