Unbreak the download progress indicator
This commit is contained in:
parent
f7f06d05c9
commit
4054e9bf03
8
debian/changelog
vendored
8
debian/changelog
vendored
@ -1,3 +1,11 @@
|
||||
lubuntu-update-notifier (0.5.4) lunar; urgency=medium
|
||||
|
||||
* Disconnect the status_changed() function from the status-changed signal in
|
||||
repair_install(), as it interferes with upgrade_progress_download().
|
||||
(LP: #2012702)
|
||||
|
||||
-- Aaron Rainbolt <arraybolt3@ubuntu.com> Sun, 26 Mar 2023 10:48:15 -0500
|
||||
|
||||
lubuntu-update-notifier (0.5.3) lunar; urgency=medium
|
||||
|
||||
* Changed some strings and fixed a typo in the autopkgtest tweak
|
||||
|
@ -385,7 +385,9 @@ class DialogUpg(QWidget):
|
||||
self.closeBtn.setVisible(False)
|
||||
try:
|
||||
self.trans3.connect('progress-changed', self.repair_progress)
|
||||
self.trans3.connect('status-changed', self.status_changed)
|
||||
# TODO the next line breaks the ability to see download progress
|
||||
# for... some reason. Maybe an aptd bug?
|
||||
# self.trans3.connect('status-changed', self.status_changed)
|
||||
self.trans3.connect('status-details-changed',
|
||||
self.status_details_changed)
|
||||
self.trans3.connect('finished', self.repair_finish)
|
||||
|
Loading…
x
Reference in New Issue
Block a user