diff --git a/CHANGELOG b/CHANGELOG index d5b50094..94da1d6e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,4 @@ +2024-12-26: [BUGFIX] Fix control highlight border in popup toolkit 2024-12-23: [FEATURE] Add ability to mask icons in `StatusNotifier` widget 2024-12-11: [BREAKING CHANGE] `dbus-next` dependency has been replaced with `dbus-fast`. Update to latest qtile is also required. 2024-11-18: [BUGFIX] Fix square border for `AnalogueClock` diff --git a/qtile_extras/popup/toolkit.py b/qtile_extras/popup/toolkit.py index 88a902e4..87b2fd62 100644 --- a/qtile_extras/popup/toolkit.py +++ b/qtile_extras/popup/toolkit.py @@ -909,6 +909,7 @@ def paint_border(self): self.drawer.set_source_rgb(self.highlight) self.drawer.ctx.save() self.rectangle() + self.drawer.ctx.set_line_width(self.highlight_border) self.drawer.ctx.stroke() self.drawer.ctx.restore()