Commit 5adc54cc authored by Erik Reider's avatar Erik Reider

Fixed MPRIS carousel dots being visible when starting with one player active

I forgot to set the initial visible state to false, so it would be visible, even with only one player active
parent 6b04c931
...@@ -97,6 +97,7 @@ namespace SwayNotificationCenter.Widgets.Mpris { ...@@ -97,6 +97,7 @@ namespace SwayNotificationCenter.Widgets.Mpris {
carousel_dots.set_carousel (carousel); carousel_dots.set_carousel (carousel);
carousel_dots.set_halign (Gtk.Align.CENTER); carousel_dots.set_halign (Gtk.Align.CENTER);
carousel_dots.set_valign (Gtk.Align.CENTER); carousel_dots.set_valign (Gtk.Align.CENTER);
carousel_dots.set_visible (false);
append (carousel_dots); append (carousel_dots);
// Config // Config
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment