Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

histdetails: respond to row activations

double-clicks, space bar, or return on rows should toggle state

Changeset c3e667f164d0

Parent 009f8d1e9a66

by Steve Borho

Changes to one file · Browse files at c3e667f164d0 Showing diff from parent 009f8d1e9a66 Diff from another changeset...

 
59
60
61
 
 
 
 
62
63
64
 
59
60
61
62
63
64
65
66
67
68
@@ -59,6 +59,10 @@
  info_col = gtk.TreeViewColumn('', cr, text=1)   tv.append_column(info_col)   + def activated(treeview, path, column): + toggled(None, path) + tv.connect('row-activated', activated) +   vbox = gtk.VBox()   vbox.set_border_width(4)   vbox.pack_start(tv)