Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR: Fix issue where statusbar status was not updated properly after checking for updates #21436

Merged
merged 2 commits into from
Oct 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions spyder/plugins/application/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,13 @@ def _check_updates_ready(self):
box.setText(error_msg)
box.set_check_visible(False)
box.show()
if self.application_update_status:
self.application_update_status.set_no_status()
elif update_available:
if self.application_update_status:
self.application_update_status.set_status_pending(
latest_release)

# Update using our installers
if (
not sys.platform.startswith("linux")
Expand Down
Loading