Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0.4, 2.0.5, and 2.1

stable commit: allow use of number-pad enter key (closes #610)

Changeset 31dfabf42537

Parent 9ccf60504e07

by Steve Borho

Changes to one file · Browse files at 31dfabf42537 Showing diff from parent 9ccf60504e07 Diff from another changeset...

 
258
259
260
261
 
 
 
 
262
263
264
 
258
259
260
 
261
262
263
264
265
266
267
@@ -258,7 +258,10 @@
  # add our splitter where the docf used to be   self.stwidget.split.addWidget(self.split)   self.msgte = msgte - QShortcut(QKeySequence('Ctrl+Return'), self, self.commit) + QShortcut(QKeySequence('Ctrl+Return'), self, self.commit).setContext( + Qt.WidgetWithChildrenShortcut) + QShortcut(QKeySequence('Ctrl+Enter'), self, self.commit).setContext( + Qt.WidgetWithChildrenShortcut)     @pyqtSlot(QString, QString)   def fileDisplayed(self, wfile, contents):