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

fileview: describe shortcuts in next/prev tooltips

Changeset 79af516c11a2

Parent d2a4fe653078

by Steve Borho

Changes to one file · Browse files at 79af516c11a2 Showing diff from parent d2a4fe653078 Diff from another changeset...

 
167
168
169
170
 
 
171
172
173
 
 
174
175
176
 
167
168
169
 
170
171
172
173
 
174
175
176
177
178
@@ -167,10 +167,12 @@
  self.modeToggleGroup.triggered.connect(self.setMode)     # Next/Prev diff (in full file mode) - self.actionNextDiff = QAction(qtlib.geticon('down'), 'Next diff', self) + self.actionNextDiff = QAction(qtlib.geticon('down'), + 'Next diff (alt+down)', self)   self.actionNextDiff.setShortcut('Alt+Down')   self.actionNextDiff.triggered.connect(self.nextDiff) - self.actionPrevDiff = QAction(qtlib.geticon('up'), 'Previous diff', self) + self.actionPrevDiff = QAction(qtlib.geticon('up'), + 'Previous diff (alt+up)', self)   self.actionPrevDiff.setShortcut('Alt+Up')   self.actionPrevDiff.triggered.connect(self.prevDiff)