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

status: give initial focus to commit text

Changeset 94f2bee6844f

Parent f0338eba5158

by Steve Borho

Changes to one file · Browse files at 94f2bee6844f Showing diff from parent f0338eba5158 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​status.py Stacked
 
490
491
492
493
 
 
 
 
494
495
496
 
490
491
492
 
493
494
495
496
497
498
499
@@ -490,7 +490,10 @@
  self._show_diff_hunks(files)     self.tree.show() - self.tree.grab_focus() + if hasattr(self, 'text'): + self.text.grab_focus() + else: + self.tree.grab_focus()   return True