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: Remove setting font for update status bar widget (Application) #21092

Merged
merged 1 commit into from
Jul 2, 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
5 changes: 2 additions & 3 deletions spyder/plugins/application/widgets/status.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,9 @@ def __init__(self, parent):
# Check for updates action menu
self.menu = QMenu(self)

# Set font size and aligment attributes fro custom widget to
# match default label values
# Set aligment attributes for custom widget to match default label
# values
self.custom_widget.setAlignment(Qt.AlignRight | Qt.AlignVCenter)
self.custom_widget.setFont(self.text_font)

# Signals
self.sig_clicked.connect(self.show_installation_dialog_or_menu)
Expand Down