diff options
author | 2022-12-02 18:48:01 +0100 | |
---|---|---|
committer | 2022-12-02 18:48:01 +0100 | |
commit | da244ff8048e0b339c1502372894a2460a637241 (patch) | |
tree | c183c44151960504ee32d5054ef5097ee3188f3d /style | |
parent | 8b55e9b9e6ba0b83038dd491dd34d95b4f9a381b (diff) | |
parent | 74ebcca146d17e4436eaf9a6e1338683be993486 (diff) | |
download | iced-da244ff8048e0b339c1502372894a2460a637241.tar.gz iced-da244ff8048e0b339c1502372894a2460a637241.tar.bz2 iced-da244ff8048e0b339c1502372894a2460a637241.zip |
Merge pull request #1570 from PolyMeilex/fix-picklist-custom-style
Fix custom style of PickList
Diffstat (limited to '')
-rw-r--r-- | style/src/theme.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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), } } } |