summaryrefslogtreecommitdiffstats
path: root/style
diff options
context:
space:
mode:
authorLibravatar Poly <marynczakbartlomiej@gmail.com>2022-12-02 16:37:55 +0100
committerLibravatar Poly <marynczakbartlomiej@gmail.com>2022-12-02 16:37:55 +0100
commit74ebcca146d17e4436eaf9a6e1338683be993486 (patch)
treec183c44151960504ee32d5054ef5097ee3188f3d /style
parent8b55e9b9e6ba0b83038dd491dd34d95b4f9a381b (diff)
downloadiced-74ebcca146d17e4436eaf9a6e1338683be993486.tar.gz
iced-74ebcca146d17e4436eaf9a6e1338683be993486.tar.bz2
iced-74ebcca146d17e4436eaf9a6e1338683be993486.zip
Fix custom style of PickList
Diffstat (limited to 'style')
-rw-r--r--style/src/theme.rs2
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),
}
}
}