mirror of
https://github.com/fergalmoran/picard.git
synced 2026-02-27 01:54:06 +00:00
Show total rather than max
Unsure why previous code showed max of queued and active rather than the total of the two.
This commit is contained in:
@@ -235,8 +235,7 @@ class MainWindow(QtGui.QMainWindow):
|
||||
self.infostatus.setAlbums(len(self.tagger.albums))
|
||||
self.infostatus.setPendingFiles(File.num_pending_files)
|
||||
ws = self.tagger.xmlws
|
||||
self.infostatus.setPendingRequests(max(ws.num_pending_web_requests,
|
||||
ws.num_active_requests))
|
||||
self.infostatus.setPendingRequests(ws.num_pending_web_requests + ws.num_active_requests)
|
||||
|
||||
def update_statusbar_listen_port(self, listen_port):
|
||||
if listen_port:
|
||||
|
||||
Reference in New Issue
Block a user