Merge pull request #148 from Atheros1/master

show 'Connected' notification when going from red to green status also
This commit is contained in:
Jonathan Warren 2013-05-14 09:04:21 -07:00
commit 3d992676df
1 changed files with 4 additions and 2 deletions

View File

@ -909,7 +909,7 @@ class MyForm(QtGui.QMainWindow):
shared.statusIconColor = 'red'
# if the connection is lost then show a notification
if self.connected:
self.notifierShow('PyBitmessage','Connection lost')
self.notifierShow('Bitmessage','Connection lost')
self.connected = False
if self.actionStatus != None:
@ -923,7 +923,7 @@ class MyForm(QtGui.QMainWindow):
shared.statusIconColor = 'yellow'
# if a new connection has been established then show a notification
if not self.connected:
self.notifierShow('PyBitmessage','Connected')
self.notifierShow('Bitmessage','Connected')
self.connected = True
if self.actionStatus != None:
@ -934,6 +934,8 @@ class MyForm(QtGui.QMainWindow):
self.statusBar().showMessage('')
self.ui.pushButtonStatusIcon.setIcon(QIcon(":/newPrefix/images/greenicon.png"))
shared.statusIconColor = 'green'
if not self.connected:
self.notifierShow('Bitmessage','Connected')
self.connected = True
if self.actionStatus != None: