mood and activity menuitem changes to Checkmenuitem
This commit is contained in:
parent
bed750410e
commit
9512a941ad
|
@ -4532,12 +4532,14 @@ class RosterWindow:
|
||||||
item.set_active(have_tune)
|
item.set_active(have_tune)
|
||||||
item.connect('toggled', self.on_publish_tune_toggled, account)
|
item.connect('toggled', self.on_publish_tune_toggled, account)
|
||||||
if have_mood:
|
if have_mood:
|
||||||
item = gtk.MenuItem(_('Mood'))
|
item = gtk.CheckMenuItem(_('Mood'))
|
||||||
pep_submenu.append(item)
|
pep_submenu.append(item)
|
||||||
|
item.set_active(len(gajim.connections[account].mood) > 0)
|
||||||
item.connect('activate', self.on_change_mood_activate, account)
|
item.connect('activate', self.on_change_mood_activate, account)
|
||||||
if have_activity:
|
if have_activity:
|
||||||
item = gtk.MenuItem(_('Activity'))
|
item = gtk.CheckMenuItem(_('Activity'))
|
||||||
pep_submenu.append(item)
|
pep_submenu.append(item)
|
||||||
|
item.set_active(len(gajim.connections[account].activity) > 0)
|
||||||
item.connect('activate', self.on_change_activity_activate,
|
item.connect('activate', self.on_change_activity_activate,
|
||||||
account)
|
account)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue