Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.7, 0.7.1, and 0.7.2

recovery: set CTRL-Q accelerator on recovery dialog

Changeset 9fd1a8f13d6b

Parent 4d3802c483ed

by Steve Borho

Changes to one file · Browse files at 9fd1a8f13d6b Showing diff from parent 4d3802c483ed Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​recovery.py Stacked
 
84
85
86
 
 
 
 
 
 
87
88
89
 
84
85
86
87
88
89
90
91
92
93
94
95
@@ -84,6 +84,12 @@
  self.add(vbox)   vbox.pack_start(self.tbar, False, False, 2)   + # ctrl-Q quits + accel_group = gtk.AccelGroup() + self.add_accel_group(accel_group) + button.add_accelerator("clicked", accel_group, ord("q"), + gtk.gdk.CONTROL_MASK, gtk.ACCEL_VISIBLE) +   # hg output window   scrolledwindow = gtk.ScrolledWindow()   scrolledwindow.set_shadow_type(gtk.SHADOW_ETCHED_IN)