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: use buttons with labels instead of icons

Changeset df3ade6a0a83

Parent c2389d9fb4fd

by Adrian Buehlmann

Changes to one file · Browse files at df3ade6a0a83 Showing diff from parent c2389d9fb4fd Diff from another changeset...

 
77
78
79
80
 
81
82
 
 
83
84
85
86
 
87
88
89
 
77
78
79
 
80
81
 
82
83
84
85
86
 
87
88
89
90
@@ -77,13 +77,14 @@
    leftvbox.pack_start(vbox, True, True)   - self.up_button = gtk.ToolButton(gtk.STOCK_GO_UP) + self.up_button = gtk.Button(_('Move Up'))   self.up_button.connect('clicked', self.up_clicked) - self.down_button = gtk.ToolButton(gtk.STOCK_GO_DOWN) + + self.down_button = gtk.Button(_('Move Down'))   self.down_button.connect('clicked', self.down_clicked)     rightvox.pack_start(self.up_button, False, False) - rightvox.pack_start(self.down_button, False, False) + rightvox.pack_start(self.down_button, False, False, 4)     self.show_all()