From 0f32cde503b064237698500f58f4fe1ee6f18ca4 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Tue, 1 Apr 2008 08:38:10 +0000 Subject: [PATCH] Fix possible issue where the health icon will not disappear. --- deluge/ui/gtkui/statusbar.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deluge/ui/gtkui/statusbar.py b/deluge/ui/gtkui/statusbar.py index 28eca9225..f330971ef 100644 --- a/deluge/ui/gtkui/statusbar.py +++ b/deluge/ui/gtkui/statusbar.py @@ -160,7 +160,8 @@ class StatusBar(component.Component): text=_("No Incoming Connections!"), callback=self._on_health_icon_clicked) - + self.health = False + # Get some config values client.get_config_value( self._on_max_connections_global, "max_connections_global")