# HG changeset patch # User Adrian Buehlmann <adr...@cadifra.com> # Date 1254607040 -7200 # Node ID df3ade6a0a8399f40f2e34b828178c41759698bc # Parent c2389d9fb4fdeadd6d0bad02aecac283288220c2 histdetails: use buttons with labels instead of icons
diff --git a/tortoisehg/hgtk/histdetails.py b/tortoisehg/hgtk/histdetails.py --- a/tortoisehg/hgtk/histdetails.py +++ b/tortoisehg/hgtk/histdetails.py @@ -77,13 +77,14 @@ class LogDetailsDialog(gtk.Dialog): 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() ------------------------------------------------------------------------------ Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9-12, 2009. Register now! http://p.sf.net/sfu/devconf _______________________________________________ Tortoisehg-develop mailing list Tortoisehg-develop@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/tortoisehg-develop