hide advanced notification control button. fixes #2738
This commit is contained in:
parent
f6546ccfe5
commit
46cb1d9f92
3 changed files with 13 additions and 4 deletions
|
@ -277,7 +277,14 @@
|
||||||
<child>
|
<child>
|
||||||
<widget class="GtkComboBox" id="event_combobox">
|
<widget class="GtkComboBox" id="event_combobox">
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="items" translatable="yes">Receive a Message</property>
|
<property name="items" translatable="yes">Receive a Message
|
||||||
|
Contact Disconnected
|
||||||
|
Contact Change Status
|
||||||
|
Group Chat Message Highlight
|
||||||
|
Group Chat Message Received
|
||||||
|
File Transfert Resquest
|
||||||
|
File Transfert Started
|
||||||
|
File Transfert Finished</property>
|
||||||
<property name="add_tearoffs">False</property>
|
<property name="add_tearoffs">False</property>
|
||||||
<property name="focus_on_click">True</property>
|
<property name="focus_on_click">True</property>
|
||||||
<signal name="changed" handler="on_event_combobox_changed" last_modification_time="Sun, 09 Jul 2006 01:54:11 GMT"/>
|
<signal name="changed" handler="on_event_combobox_changed" last_modification_time="Sun, 09 Jul 2006 01:54:11 GMT"/>
|
||||||
|
|
|
@ -85,6 +85,11 @@ class PreferencesWindow:
|
||||||
self.one_window_type_combobox =\
|
self.one_window_type_combobox =\
|
||||||
self.xml.get_widget('one_window_type_combobox')
|
self.xml.get_widget('one_window_type_combobox')
|
||||||
|
|
||||||
|
#FIXME: remove when ANC will be implemented
|
||||||
|
w = self.xml.get_widget('hbox3020')
|
||||||
|
w.set_no_show_all(True)
|
||||||
|
w.hide()
|
||||||
|
|
||||||
#trayicon
|
#trayicon
|
||||||
if gajim.interface.systray_capabilities:
|
if gajim.interface.systray_capabilities:
|
||||||
st = gajim.config.get('trayicon')
|
st = gajim.config.get('trayicon')
|
||||||
|
|
|
@ -2458,9 +2458,6 @@ class AdvancedNotificationsWindow:
|
||||||
'run_command_cb', 'command_entry', 'urgency_hint_cb'):
|
'run_command_cb', 'command_entry', 'urgency_hint_cb'):
|
||||||
self.__dict__[w] = self.xml.get_widget(w)
|
self.__dict__[w] = self.xml.get_widget(w)
|
||||||
|
|
||||||
#FIXME: remove when this will be implemented
|
|
||||||
self.urgency_hint_cb.set_no_show_all(True)
|
|
||||||
self.urgency_hint_cb.hide()
|
|
||||||
# Contains status checkboxes
|
# Contains status checkboxes
|
||||||
childs = self.status_hbox.get_children()
|
childs = self.status_hbox.get_children()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue