Clear status bar if it is currenlty displaying a warning that you are not connected if you connect.
This commit is contained in:
parent
e586896f7b
commit
4939715ce8
|
@ -2471,8 +2471,6 @@ class MyForm(QtGui.QMainWindow):
|
||||||
|
|
||||||
self.rerenderComboBoxSendFrom()
|
self.rerenderComboBoxSendFrom()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
self.listOfOutgoingSynSenderThreads = [] #if we don't maintain this list, the threads will get garbage-collected.
|
self.listOfOutgoingSynSenderThreads = [] #if we don't maintain this list, the threads will get garbage-collected.
|
||||||
|
|
||||||
self.connectToStream(1)
|
self.connectToStream(1)
|
||||||
|
@ -2564,9 +2562,13 @@ class MyForm(QtGui.QMainWindow):
|
||||||
self.ui.pushButtonStatusIcon.setIcon(QIcon(":/newPrefix/images/redicon.png"))
|
self.ui.pushButtonStatusIcon.setIcon(QIcon(":/newPrefix/images/redicon.png"))
|
||||||
statusIconColor = 'red'
|
statusIconColor = 'red'
|
||||||
if color == 'yellow':
|
if color == 'yellow':
|
||||||
|
if self.statusBar().currentMessage() == 'Warning: You are currently not connected. Bitmessage will do the work necessary to send the message but it won\'t send until you connect.':
|
||||||
|
self.statusBar().showMessage('')
|
||||||
self.ui.pushButtonStatusIcon.setIcon(QIcon(":/newPrefix/images/yellowicon.png"))
|
self.ui.pushButtonStatusIcon.setIcon(QIcon(":/newPrefix/images/yellowicon.png"))
|
||||||
statusIconColor = 'yellow'
|
statusIconColor = 'yellow'
|
||||||
if color == 'green':
|
if color == 'green':
|
||||||
|
if self.statusBar().currentMessage() == 'Warning: You are currently not connected. Bitmessage will do the work necessary to send the message but it won\'t send until you connect.':
|
||||||
|
self.statusBar().showMessage('')
|
||||||
self.ui.pushButtonStatusIcon.setIcon(QIcon(":/newPrefix/images/greenicon.png"))
|
self.ui.pushButtonStatusIcon.setIcon(QIcon(":/newPrefix/images/greenicon.png"))
|
||||||
statusIconColor = 'green'
|
statusIconColor = 'green'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user