1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-22 05:48:03 +01:00

Fix some issues with wired networks caused by refactoring.

Add missing return statement.
This commit is contained in:
Dan O'Reilly
2008-12-22 00:20:42 -05:00
parent 16aad93feb
commit 2c24f4b0db
3 changed files with 14 additions and 7 deletions

View File

@@ -297,10 +297,11 @@ class appGui(object):
'org.wicd.daemon')
bus.add_signal_receiver(self.handle_connection_results,
'ConnectResultsSent', 'org.wicd.daemon')
bus.add_signal_receiver(handle_no_dbus, "DaemonClosing",
"org.wicd.daemon")
bus.add_signal_receiver(lambda: setup_dbus(force=False),
"DaemonStarting", "org.wicd.daemon")
if standalone:
bus.add_signal_receiver(handle_no_dbus, "DaemonClosing",
"org.wicd.daemon")
try:
gobject.timeout_add_seconds(1, self.update_statusbar)
except: