Kill last vestage of the single group icon.

This commit is contained in:
Stephen Boddy 2009-01-14 16:16:01 +01:00
parent f97d1c49f8
commit 775030ba85
2 changed files with 6 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 277 B

View File

@ -75,7 +75,12 @@ class TerminatorTerm (gtk.VBox):
self._termbox = gtk.HBox ()
self._termbox.show()
self._titlegroupimg = gtk.Image()
self._titlegroupimg.set_from_icon_name (APP_NAME + '_groups', gtk.ICON_SIZE_MENU)
if self.terminator.groupsend == 2:
self._titlegroupimg.set_from_icon_name (APP_NAME + '_active_broadcast_all', gtk.ICON_SIZE_MENU)
elif self.terminator.groupsend == 1:
self._titlegroupimg.set_from_icon_name (APP_NAME + '_active_broadcast_group', gtk.ICON_SIZE_MENU)
else:
self._titlegroupimg.set_from_icon_name (APP_NAME + '_active_broadcast_off', gtk.ICON_SIZE_MENU)
self._title = gtk.Label()
self._title.show()
self._titlegroup = gtk.Label()