/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 notify.py

  • Committer: Jelmer Vernooij
  • Date: 2007-07-15 15:13:34 UTC
  • Revision ID: jelmer@samba.org-20070715151334-2t0g8fmpgj6vnqa7
Add icon for Bazaar preferences.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
        item.connect('activate', self.show_about)
53
53
        self.append(item)
54
54
        self.append(gtk.SeparatorMenuItem())
55
 
        item = gtk.MenuItem('_Close')
 
55
        item = gtk.ImageMenuItem(gtk.STOCK_QUIT, None)
56
56
        item.connect('activate', gtk.main_quit)
57
57
        self.append(item)
58
58
        self.show_all()