From 82cafc58e6c8dd9e7297cea970ccc77cd9729bc2 Mon Sep 17 00:00:00 2001 From: lm Date: Fri, 17 Oct 2025 13:56:34 +0200 Subject: [PATCH] Keep palette swatches borderless on hover --- app/gui/ui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/gui/ui.py b/app/gui/ui.py index f5d7b24..d11099a 100644 --- a/app/gui/ui.py +++ b/app/gui/ui.py @@ -186,8 +186,8 @@ class UIBuilderMixin: swatch.bind("", trigger) swatch.bind("", trigger) swatch.bind("", trigger) - swatch.bind("", lambda _e: swatch.configure(highlightthickness=1, highlightbackground="#71717a")) - swatch.bind("", lambda _e: swatch.configure(highlightthickness=0)) + swatch.bind("", lambda _e: swatch.configure(cursor="hand2")) + swatch.bind("", lambda _e: swatch.configure(cursor="arrow")) def _add_toolbar_button(self, parent, text: str, command) -> None: font = tkfont.Font(root=self.root, family="Segoe UI", size=9)