Comment 6 for bug 1203888

Revision history for this message
Alistair Buxton (a-j-buxton) wrote : Re: appindicator doesn't work in Saucy

Actually it looks a lot like python-appindicator is broken. Following code demonstrates the bug:

#!/usr/bin/env python

import gtk
import appindicator

m = gtk.Menu()
m.append(gtk.MenuItem('Hello'))

a = appindicator.Indicator('test', '', appindicator.CATEGORY_APPLICATION_STATUS)
a.set_status(appindicator.STATUS_ACTIVE)
a.set_menu(m)

gtk.main()