1
0
Fork 0
mirror of https://github.com/Zedfrigg/ironbar.git synced 2025-04-19 19:34:24 +02:00

fix(music): wrong widget name on vol slider

This commit is contained in:
Jake Stanger 2023-01-28 00:51:24 +00:00
parent 08cfbbc2ea
commit 0cefcbd02b
No known key found for this signature in database
GPG key ID: C51FC8F9CB0BEA61

View file

@ -329,7 +329,7 @@ impl Module<Button> for MusicModule {
let volume_slider = Scale::with_range(Orientation::Vertical, 0.0, 100.0, 5.0);
volume_slider.set_inverted(true);
volume_slider.set_widget_name("scale");
volume_slider.set_widget_name("slider");
let volume_icon = Label::new(Some(&self.icons.volume));
volume_icon.style_context().add_class("icon");