Skip to content
Snippets Groups Projects
Commit 917af157 authored by Vincent Texier's avatar Vincent Texier
Browse files

Fix bug statusbar message

parent 48b0a794
No related branches found
No related tags found
No related merge requests found
...@@ -191,7 +191,7 @@ class CurrencyTabWidget(QWidget, Ui_CurrencyTabWidget): ...@@ -191,7 +191,7 @@ class CurrencyTabWidget(QWidget, Ui_CurrencyTabWidget):
label_text = "{0}{1}".format(icon, text) label_text = "{0}{1}".format(icon, text)
if status_infotext != "": if status_infotext != "":
label_text += " - {0}".format(status_infotext) label_text += " - {0}".format(status_infotext)
self.status_label.setText("{0}{1}{2}".format(icon, text, status_infotext)) self.status_label.setText(label_text)
@pyqtSlot(list) @pyqtSlot(list)
def notify_transfers(self, transfers_list): def notify_transfers(self, transfers_list):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment