Skip to content

Commit

Permalink
refactor(widgets): Improve style updating in bar.py
Browse files Browse the repository at this point in the history
  • Loading branch information
amnweb committed Oct 13, 2024
1 parent d99a139 commit 27e8e7e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/bar.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,4 +215,5 @@ def update_styles(widget):
widget.style().unpolish(widget)
widget.style().polish(widget)
for child in widget.findChildren(QWidget):
update_styles(child)
child.style().unpolish(child)
child.style().polish(child)

0 comments on commit 27e8e7e

Please sign in to comment.