Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9.3, 2.0, and 2.0.1

stable icons: move sync icons to be xdg-theme-like structure

Also added 'hg-' or 'thg-' prefix to avoid naming conflict with system theme.

Changeset 495f80e1243c

Parent 8b93351c8e71

by Yuya Nishihara

Changes to 12 files · Browse files at 495f80e1243c Showing diff from parent 8b93351c8e71 Diff from another changeset...

icons/​24x24/​actions/​hg-incoming.png Side by side
renamed from tortoisehg/hgqt/icons/incoming-24x24.png
Removed image
Added image
Subtracted image Added image
icons/​24x24/​actions/​hg-outgoing.png Side by side
renamed from tortoisehg/hgqt/icons/outgoing-24x24.png
Removed image
Added image
Subtracted image Added image
icons/​24x24/​actions/​hg-pull.png Side by side
renamed from tortoisehg/hgqt/icons/pull-24x24.png
Removed image
Added image
Subtracted image Added image
icons/​24x24/​actions/​hg-push.png Side by side
renamed from tortoisehg/hgqt/icons/push-24x24.png
Removed image
Added image
Subtracted image Added image
Show Entire File icons/​scalable/​actions/​hg-incoming.svg Stacked
renamed from tortoisehg/hgqt/icons/incoming.svg
(No changes)
Show Entire File icons/​scalable/​actions/​hg-outgoing.svg Stacked
renamed from tortoisehg/hgqt/icons/outgoing.svg
(No changes)
Show Entire File icons/​scalable/​actions/​hg-pull.svg Stacked
renamed from tortoisehg/hgqt/icons/pull.svg
(No changes)
Show Entire File icons/​scalable/​actions/​hg-push.svg Stacked
renamed from tortoisehg/hgqt/icons/push.svg
(No changes)
Show Entire File icons/​scalable/​actions/​thg-sync.svg Stacked
renamed from tortoisehg/hgqt/icons/sync.svg
(No changes)
 
173
174
175
176
 
177
178
179
 
173
174
175
 
176
177
178
179
@@ -173,7 +173,7 @@
  tt.setTabToolTip(idx, _("Search"))     self.syncDemand = w = DemandWidget(self.createSyncWidget) - self.syncTabIndex = idx = tt.addTab(w, geticon('sync'), '') + self.syncTabIndex = idx = tt.addTab(w, geticon('thg-sync'), '')   tt.setTabToolTip(idx, _("Synchronize"))     self.mqDemand = w = DemandWidget(self.createMQWidget)
 
87
88
89
90
 
91
92
 
93
94
 
95
96
 
97
98
99
 
87
88
89
 
90
91
 
92
93
 
94
95
 
96
97
98
99
@@ -87,13 +87,13 @@
  self.opbuttons = []   for tip, icon, cb in (   (_('Preview incoming changesets from specified URL'), - 'incoming', self.inclicked), + 'hg-incoming', self.inclicked),   (_('Pull incoming changesets from specified URL'), - 'pull', self.pullclicked), + 'hg-pull', self.pullclicked),   (_('Filter outgoing changesets to specified URL'), - 'outgoing', self.outclicked), + 'hg-outgoing', self.outclicked),   (_('Push outgoing changesets to specified URL'), - 'push', self.pushclicked), + 'hg-push', self.pushclicked),   (_('Email outgoing changesets for specified URL'),   'mail-forward', self.emailclicked)):   a = QAction(self)
 
229
230
231
232
 
233
234
235
 
307
308
309
310
 
311
312
313
 
314
315
316
 
317
318
319
 
320
321
322
 
229
230
231
 
232
233
234
235
 
307
308
309
 
310
311
312
 
313
314
315
 
316
317
318
 
319
320
321
322
@@ -229,7 +229,7 @@
  addtaskview('Checkmark', _('&Commit'))   addtaskview('annotate', _('&Manifest'))   addtaskview('repobrowse', _('&Search')) - addtaskview('sync', _('S&ynchronize')) + addtaskview('thg-sync', _('S&ynchronize'))   self.actionSelectTaskMQ = \   addtaskview('mq', _('Patch &Queue'), 'mq')   self.actionSelectTaskPbranch = \ @@ -307,16 +307,16 @@
  menu.addAction(self.tasktbar.toggleViewAction())   self.menuView.addMenu(menu)   - newaction(_('Pull'), self._repofwd('pull'), icon='pull-24x24', + newaction(_('Pull'), self._repofwd('pull'), icon='hg-pull',   tooltip=_('Pull incoming changes from default pull target'),   enabled='repoopen', toolbar='sync') - newaction(_('Push'), self._repofwd('push'), icon='push-24x24', + newaction(_('Push'), self._repofwd('push'), icon='hg-push',   tooltip=_('Push outgoing changes to default push target'),   enabled='repoopen', toolbar='sync') - newaction(_('Incoming'), self._repofwd('incoming'), icon='incoming-24x24', + newaction(_('Incoming'), self._repofwd('incoming'), icon='hg-incoming',   tooltip=_('Check for incoming changes from default pull target'),   enabled='repoopen', toolbar='sync') - newaction(_('Outgoing'), self._repofwd('outgoing'), icon='outgoing-24x24', + newaction(_('Outgoing'), self._repofwd('outgoing'), icon='hg-outgoing',   tooltip=_('Detect outgoing changes to default push target'),   enabled='repoopen', toolbar='sync')