Skip to content

Commit

Permalink
Fix issue with outlining
Browse files Browse the repository at this point in the history
  • Loading branch information
marticliment committed Jul 12, 2022
1 parent f46b466 commit ea776de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elevenclock/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1352,7 +1352,7 @@ def __init__(self, text, parent):
self.setMouseTracking(True)
self.backgroundwidget = QWidget(self)
self.color = "255, 255, 255"
self.sidesColor = "0, 0, 0"
self.sidesColor = "0, 0, 0" if isTaskbarDark() else "200,200,200"
QGuiApplication.instance().installEventFilter(self)
self.bgopacity = 0.2
self.backgroundwidget.setContentsMargins(0, self.window().prefMargins, 0, self.window().prefMargins)
Expand Down

0 comments on commit ea776de

Please sign in to comment.