/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to annotate/gannotate.py

  • Committer: Curtis Hovey
  • Date: 2012-02-28 13:52:00 UTC
  • mfrom: (776.2.12 ui-factory)
  • Revision ID: sinzui.is@verizon.net-20120228135200-xzqb6qhtzck01doo
Merged GtkUIFactory additions and tweaks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
from bzrlib.revision import NULL_REVISION, CURRENT_REVISION
28
28
 
29
29
from bzrlib.plugins.gtk.annotate.colormap import AnnotateColorSaturation
30
 
from bzrlib.plugins.gtk.i18n import _i18n
31
30
from bzrlib.plugins.gtk.revisionview import RevisionView
32
31
from bzrlib.plugins.gtk.window import Window
33
32
 
484
483
        self.pack_start(entry, False, False, 0)
485
484
 
486
485
        # Next/previous buttons
487
 
        button = Gtk.Button(_i18n('_Next'), use_underline=True)
 
486
        button = Gtk.Button('_Next')
488
487
        image = Gtk.Image()
489
488
        image.set_from_stock('gtk-go-forward', Gtk.IconSize.BUTTON)
490
489
        button.set_image(image)
492
491
                       'forward')
493
492
        self.pack_start(button, False, False, 0)
494
493
 
495
 
        button = Gtk.Button(_i18n('_Previous'), use_underline=True)
 
494
        button = Gtk.Button('_Previous')
496
495
        image = Gtk.Image()
497
496
        image.set_from_stock('gtk-go-back', Gtk.IconSize.BUTTON)
498
497
        button.set_image(image)