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

commit: frendlier update when entering qnew name

Changeset 875aac88a930

Parent b0ce5f2b8491

by Simon Heimberg

Changes to one file · Browse files at 875aac88a930 Showing diff from parent b0ce5f2b8491 Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​commit.py Stacked
 
516
517
518
 
 
519
520
521
 
538
539
540
541
 
542
543
544
 
516
517
518
519
520
521
522
523
 
540
541
542
 
543
544
545
546
@@ -516,6 +516,8 @@
  if qnew:   self.qnew_name.set_text('')   self.repo.invalidate() + _mq = self.repo.mq + _mq.__init__(_mq.ui, _mq.basepath, _mq.path)   elif self.qheader is None:   self.text.set_buffer(gtk.TextBuffer())   self._update_recent_messages(self.opts['message']) @@ -538,7 +540,7 @@
  c_btn = self.get_toolbutton('_Commit')   c_btn.set_label(self.mqmode and 'QRefresh' or 'QNew')   c_btn.set_tooltip(self.tooltips, self.mqmode and 'QRefresh' or 'QNew') - self.reload_status() + success, outtext = self._hg_call_wrapper('Status', self._do_reload_status)   self.qnew_name.grab_focus() # set focus back