Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.3rc1, 0.3, and 0.4rc1

hggtk/history: move 'show column' toggles to side-bar

Changeset 0af5325f55e6

Parent c047c9169e70

by Steve Borho

Changes to one file · Browse files at 0af5325f55e6 Showing diff from parent c047c9169e70 Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​history.py Stacked
 
59
60
61
62
63
64
65
66
67
68
69
 
344
345
346
 
 
 
 
 
 
 
347
348
349
350
 
351
352
353
 
59
60
61
 
 
 
 
 
62
63
64
 
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
@@ -59,11 +59,6 @@
  menu=self._filter_menu(),   tip='Filter revisions for display'),   gtk.SeparatorToolItem(), - self.make_toolbutton(gtk.STOCK_ZOOM_IN, - '_View', - self._filter_clicked, # TODO What should this button do? - menu=self._view_menu(), - tip='Select columns to display'),   self.make_toolbutton(gtk.STOCK_FIND,   '_DataMine',   self._datamine_clicked, @@ -344,10 +339,18 @@
  hbox = gtk.HBox()   hbox.pack_start(self.graphview, True, True, 0)   vbox = gtk.VBox() + self.colmenu = gtk.MenuToolButton('') + self.colmenu.set_menu(self._view_menu()) + # A MenuToolButton has two parts; a Button and a ToggleButton + # we want to see the togglebutton, but not the button + b = self.colmenu.child.get_children()[0] + b.unmap() + b.set_sensitive(False)   self.nextbutton = gtk.ToolButton(gtk.STOCK_GO_DOWN)   self.nextbutton.connect('clicked', self._more_clicked)   self.allbutton = gtk.ToolButton(gtk.STOCK_GOTO_BOTTOM)   self.allbutton.connect('clicked', self._load_all_clicked) + vbox.pack_start(self.colmenu, False, False)   vbox.pack_start(gtk.Label(''), True, True) # expanding blank label   vbox.pack_start(self.nextbutton, False, False)   vbox.pack_start(self.allbutton, False, False)