[jhbuild] disable notifications by default



commit 45ab65c9fb244d32b83c927b90bca33fadde0651
Author: Colin Walters <walters verbum org>
Date:   Tue May 17 17:59:11 2011 -0400

    disable notifications by default
    
    In GNOME 2 while it was a cute hack, I personally never found it useful.  No
    other terminal apps use libnotify, and in GNOME 3 it's worse because
    we persist notifications.  Basically if you're not an app, it's just
    broken to use notifications.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=650440

 jhbuild/defaults.jhbuildrc |   13 +++++--------
 1 files changed, 5 insertions(+), 8 deletions(-)
---
diff --git a/jhbuild/defaults.jhbuildrc b/jhbuild/defaults.jhbuildrc
index 7abe832..3da35c2 100644
--- a/jhbuild/defaults.jhbuildrc
+++ b/jhbuild/defaults.jhbuildrc
@@ -134,14 +134,11 @@ cvs_program = 'cvs'
 mirror_policy = ""
 module_mirror_policy = {}
 
-if sys.platform.startswith('win'):
-    notrayicon = True
-    nonotify = True
-else:
-    # Show a tray icon using zenity
-    notrayicon = False
-    # whether not to emit notifications through the notification daemon
-    nonotify = False
+# whether not to emit notifications through the notification daemon
+# notifications are persistent in GNOME 3, therefore off by default
+nonotify = True
+# Show a tray icon using zenity
+notrayicon = True
 
 # whether to run tests in real X and not in Xvfb
 noxvfb = False



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]