/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 viz/branchwin.py

  • Committer: Daniel Schierbeck
  • Date: 2008-03-13 15:12:43 UTC
  • mto: (452.2.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 453.
  • Revision ID: daniel.schierbeck@gmail.com-20080313151243-f0ubynz8t4lji2b8
Disabled the use of mnemonics in tag menu items.

Show diffs side-by-side

added added

removed removed

Lines of Context:
426
426
            tags.sort()
427
427
            tags.reverse()
428
428
            for tag, revid in tags:
429
 
                tag_item = gtk.MenuItem(tag)
 
429
                tag_item = gtk.MenuItem(tag, use_underline=False)
430
430
                tag_item.connect('activate', self._tag_selected_cb, revid)
431
431
                menu.add(tag_item)
432
432
            self.go_menu_tags.set_submenu(menu)