From 74ebcca146d17e4436eaf9a6e1338683be993486 Mon Sep 17 00:00:00 2001 From: Poly Date: Fri, 2 Dec 2022 16:37:55 +0100 Subject: Fix custom style of PickList --- style/src/theme.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style/src/theme.rs b/style/src/theme.rs index d7ebb827..dde0df5d 100644 --- a/style/src/theme.rs +++ b/style/src/theme.rs @@ -559,7 +559,7 @@ impl pick_list::StyleSheet for Theme { icon_size: 0.7, } } - PickList::Custom(custom, _) => custom.active(self), + PickList::Custom(custom, _) => custom.hovered(self), } } } -- cgit