=== modified file 'SettingsPage.py' --- SettingsPage.py 2012-05-16 04:59:11 +0000 +++ SettingsPage.py 2012-06-30 05:00:19 +0000 @@ -175,6 +175,17 @@ if has_pynotify: options_box.pack_start(self.enable_notifications,False,False,0) options_box.pack_start(self.enable_notify_replies,False,False,0) + else: + self.enable_notifications.set_sensitive(False) + self.enable_notify_replies.set_sensitive(False) + enable_notifications_event_box = gtk.EventBox() + enable_notify_replies_event_box = gtk.EventBox() + enable_notifications_event_box.set_tooltip_text("Disabled. Install python-notify to enable.") + enable_notify_replies_event_box.set_tooltip_text("Disabled. Install python-notify to enable.") + enable_notifications_event_box.add(self.enable_notifications) + enable_notify_replies_event_box.add(self.enable_notify_replies) + options_box.pack_start(enable_notifications_event_box,False,False,0) + options_box.pack_start(enable_notify_replies_event_box,False,False,0) options_frame = gtk.Frame(_("Options")) options_frame.add(options_box) vbox.pack_start(options_frame,False,False,0)