Skip to content

Commit

Permalink
Fix defocused bug on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
justin025 committed Dec 23, 2024
1 parent 95a90e3 commit e792669
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/onthespot/gui/mainui.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,15 @@ def add_item_to_download_list(self, item, item_metadata):

# Items
pbar = QProgressBar()
pbar.setStyleSheet("""
QProgressBar {
text-align: center;
}
QProgressBar::chunk {
background-color: #2596BE;
color: white;
}
""")
pbar.setValue(0)
pbar.setMinimumHeight(30)
if config.get("download_copy_btn"):
Expand Down

0 comments on commit e792669

Please sign in to comment.