diff --git a/data/glade/advanced_notifications_window.glade b/data/glade/advanced_notifications_window.glade index 57b23d805..b2f18e4f5 100644 --- a/data/glade/advanced_notifications_window.glade +++ b/data/glade/advanced_notifications_window.glade @@ -277,7 +277,14 @@ True - Receive a Message + 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 False True diff --git a/src/config.py b/src/config.py index 2f81f9990..731591a45 100644 --- a/src/config.py +++ b/src/config.py @@ -85,6 +85,11 @@ class PreferencesWindow: self.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 if gajim.interface.systray_capabilities: st = gajim.config.get('trayicon') diff --git a/src/dialogs.py b/src/dialogs.py index cd9c06222..605deec8a 100644 --- a/src/dialogs.py +++ b/src/dialogs.py @@ -2458,9 +2458,6 @@ class AdvancedNotificationsWindow: 'run_command_cb', 'command_entry', 'urgency_hint_cb'): 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 childs = self.status_hbox.get_children()