Thu, 01 Aug 2013 18:52:01 +0200
Added an icon for the Mercurial side-by-side diff menu entries.
Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py | file | annotate | diff | comparison | revisions | |
icons/default/vcsSbsDiff.png | file | annotate | diff | comparison | revisions |
--- a/Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py Thu Aug 01 18:41:16 2013 +0200 +++ b/Plugins/VcsPlugins/vcsMercurial/ProjectBrowserHelper.py Thu Aug 01 18:52:01 2013 +0200 @@ -229,16 +229,14 @@ act = menu.addAction(UI.PixmapCache.getIcon("vcsDiff.png"), self.trUtf8('Show difference'), self._VCSDiff) self.vcsMenuActions.append(act) - # TODO: create an icon for SBS mode - act = menu.addAction(UI.PixmapCache.getIcon("vcsDiff.png"), + act = menu.addAction(UI.PixmapCache.getIcon("vcsSbsDiff.png"), self.trUtf8('Show difference side-by-side'), self.__HgSbsDiff) self.vcsMenuActions.append(act) act = menu.addAction(UI.PixmapCache.getIcon("vcsDiff.png"), self.trUtf8('Show difference (extended)'), self.__HgExtendedDiff) self.vcsMenuActions.append(act) - # TODO: create an icon for SBS mode - act = menu.addAction(UI.PixmapCache.getIcon("vcsDiff.png"), + act = menu.addAction(UI.PixmapCache.getIcon("vcsSbsDiff.png"), self.trUtf8('Show difference side-by-side (extended)'), self.__HgSbsExtendedDiff) self.vcsMenuActions.append(act)