Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

shlib: slightly more meaningful function name

Changeset cd643567147b

Parent 4ad51f3cf479

by Steve Borho

Changes to one file · Browse files at cd643567147b Showing diff from parent 4ad51f3cf479 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​shlib.py Stacked
 
166
167
168
169
 
170
171
 
172
173
174
 
166
167
168
 
169
170
 
171
172
173
174
@@ -166,9 +166,9 @@
  ico = get_tortoise_icon(thgicon)   if ico: window.set_icon_from_file(ico)   # Global keybindings for TortoiseHg - window.connect('key-press-event', window_key) + window.connect('key-press-event', window_key_press)   -def window_key(window, event): +def window_key_press(window, event):   if event.keyval == ord('q') and (event.state & gtk.gdk.CONTROL_MASK):   devent = gtk.gdk.Event(gtk.gdk.DELETE)   window.emit('delete_event', devent)