From eaa3a8c63d48a602c44ada099193702e82aaba9f Mon Sep 17 00:00:00 2001 From: takotori Date: Thu, 2 Nov 2023 17:19:20 +0100 Subject: [PATCH] disable highlight on separator when hovering --- src/components/window/window.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/window/window.rs b/src/components/window/window.rs index 4779d3c..0ca2fa3 100644 --- a/src/components/window/window.rs +++ b/src/components/window/window.rs @@ -210,6 +210,7 @@ impl Window { } let separator = ListBoxRow::new(); separator.set_child(Some(>k::Separator::new(Orientation::Horizontal))); + separator.set_selectable(false); separator.set_activatable(false); selfImp.resetSidebarList.append(&separator); }