Skip to content

Commit

Permalink
[Plugin installer] Move the status bar label to the right and make it…
Browse files Browse the repository at this point in the history
… less verbose
  • Loading branch information
borysiasty committed Dec 27, 2017
1 parent 3a52412 commit 63e5558
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/pyplugin_installer/installer.py
Expand Up @@ -71,8 +71,8 @@ def __init__(self):

if repositories.checkingOnStart() and repositories.timeForChecking() and repositories.allEnabled():
# start fetching repositories
self.statusLabel = QLabel(self.tr("Looking for new plugins...") + " ", iface.mainWindow().statusBar())
iface.mainWindow().statusBar().insertPermanentWidget(0, self.statusLabel)
self.statusLabel = QLabel(iface.mainWindow().statusBar())
iface.mainWindow().statusBar().addPermanentWidget(self.statusLabel)
self.statusLabel.linkActivated.connect(self.showPluginManagerWhenReady)
repositories.checkingDone.connect(self.checkingDone)
for key in repositories.allEnabled():
Expand Down

0 comments on commit 63e5558

Please sign in to comment.