Skip to content

Commit

Permalink
fixed radio/checkbutton bug part II
Browse files Browse the repository at this point in the history
  • Loading branch information
Henri Wahl committed Jul 24, 2013
1 parent 17f6c3e commit 044900a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Nagstamon/Nagstamon/GUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -2904,12 +2904,12 @@ def __init__(self, **kwds):
self.builder.get_object("input_combo_fullscreen_display").hide()
self.builder.get_object("label_fullscreen_display").hide()
self.builder.get_object("input_checkbutton_notification_desktop").hide()
self.builder.get_object("input_checkbutton_appindicator").hide()
self.builder.get_object("input_radiobutton_appindicator").hide()

# as of now there is no notification in Windows so disable it
if platform.system() == "Windows":
self.builder.get_object("input_checkbutton_notification_desktop").hide()
self.builder.get_object("input_checkbutton_appindicator").hide()
self.builder.get_object("input_radiobutton_appindicator").hide()

# libnotify-based desktop notification probably only available on Linux
if not sys.modules.has_key("pynotify"):
Expand Down

0 comments on commit 044900a

Please sign in to comment.