Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.0.1, 1.0.2, and 1.0.3

stable changeset: redraw only when 'changes' column is updated

Also changes the way to redraw TreeView. show() & hide() of TreeView
disable the search feature by CTRL-F. So we need to redraw it with
the straight-forward way: queue_draw().

Fixes #1022

Changeset f2d0c37dce01

Parent 90dfe94db0a5

by Yuki KODAMA

Changes to one file · Browse files at f2d0c37dce01 Showing diff from parent 90dfe94db0a5 Diff from another changeset...

 
145
146
147
 
148
149
150
151
 
152
153
154
 
145
146
147
148
149
150
 
 
151
152
153
154
@@ -145,10 +145,10 @@
  gview = self.graphview   if oldother:   gview.model.clear_parents() + gview.queue_draw()   elif self.otherparent:   gview.model.set_parent(ctx.rev(), parent) - gview.hide() - gview.show() + gview.queue_draw()     # update dialog title   self.set_title(title)