Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.1.3, 1.1.4, and 1.1.5

stable hginit: fixes for replacing init dialog with commit tool at exit

Changeset 029b3dc85588

Parent 11993bb5ac68

by Steve Borho

Changes to one file · Browse files at 029b3dc85588 Showing diff from parent 11993bb5ac68 Diff from another changeset...

 
145
146
147
 
 
 
148
149
150
151
152
153
154
 
 
 
 
155
156
157
 
145
146
147
148
149
150
151
 
152
 
 
 
 
153
154
155
156
157
158
159
@@ -145,13 +145,15 @@
  shlib.shell_notify([dest])     if self.optrunci.get_active(): + self.emit_stop_by_name('response') + self.emit_stop_by_name('destroy') + self.hide()   os.chdir(dest) - from tortoisehg.hgtk.hgtk import gtkrun   from tortoisehg.hgtk.commit import run as cirun - ciui = ui.ui() - self.hide() - gtkrun(cirun, ciui) - return + win = cirun(ui.ui()) + win.display() + win.show_all() + win.connect('destroy', gtk.main_quit)   else:   self.response(gtk.RESPONSE_CLOSE)