From d5c148205f105acee0a943f71ded69baa89360c5 Mon Sep 17 00:00:00 2001 From: Martin Wagner Date: Tue, 8 Mar 2022 19:27:30 +0100 Subject: [PATCH] fixed VolumeButton popover --- src/mpdevil.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mpdevil.py b/src/mpdevil.py index 3009f63..9e0e760 100755 --- a/src/mpdevil.py +++ b/src/mpdevil.py @@ -3283,6 +3283,7 @@ class VolumeButton(Gtk.VolumeButton): # popover popover=self.get_popup() scale_box=popover.get_child() + scale_box.get_children()[1].set_hexpand(True) # expand scale popover.remove(scale_box) box=Gtk.Box(orientation=Gtk.Orientation.VERTICAL) box.pack_start(scale_box, False, False, 0)