UPnP recommendation notification fixes
- notify also if no connections and no change
This commit is contained in:
parent
ff786725ed
commit
741ac5ca05
|
@ -1667,8 +1667,7 @@ class MyForm(settingsmixin.SMainWindow):
|
|||
self.notifierShow('Bitmessage', unicode(_translate(
|
||||
"MainWindow", "Connection lost").toUtf8(),'utf-8'),
|
||||
self.SOUND_DISCONNECTED, None)
|
||||
if self.connected and \
|
||||
not BMConfigParser().safeGetBoolean('bitmessagesettings', 'upnp') and \
|
||||
if not BMConfigParser().safeGetBoolean('bitmessagesettings', 'upnp') and \
|
||||
BMConfigParser().get('bitmessagesettings', 'socksproxytype') == "none":
|
||||
self.statusBar().showMessage(_translate(
|
||||
"MainWindow", "Problems connecting? Try enabling UPnP in the Network Settings"), 10000)
|
||||
|
|
|
@ -116,7 +116,7 @@ class NetworkStatus(QtGui.QWidget, RetranslateMixin):
|
|||
"networkstatus", "Total Connections: %1").arg(str(len(shared.connectedHostsList))))
|
||||
if len(shared.connectedHostsList) > 0 and shared.statusIconColor == 'red': # FYI: The 'singlelistener' thread sets the icon color to green when it receives an incoming connection, meaning that the user's firewall is configured correctly.
|
||||
self.window().setStatusIcon('yellow')
|
||||
elif len(shared.connectedHostsList) == 0 and shared.statusIconColor != 'red':
|
||||
elif len(shared.connectedHostsList) == 0:
|
||||
self.window().setStatusIcon('red')
|
||||
|
||||
# timer driven
|
||||
|
|
Loading…
Reference in New Issue
Block a user