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

commit: reset history combo after rejecting change

without setting the row to -1, the rejected row was unselectable

Changeset 7f5ae658182f

Parent 4a6f54cc0e8e

by Steve Borho

Changes to one file · Browse files at 7f5ae658182f Showing diff from parent 4a6f54cc0e8e Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​commit.py Stacked
 
111
112
113
 
114
115
116
 
111
112
113
114
115
116
117
@@ -111,6 +111,7 @@
  response = Confirm('Discard Message', [], self,   'Discard current commit message?').run()   if response != gtk.RESPONSE_YES: + combobox.set_active(-1)   return   buf.set_text(model[index][1])