From c8de9d2cfa42c995a154205bf2cd22501ba8264a Mon Sep 17 00:00:00 2001 From: Martin Wagner Date: Mon, 4 Apr 2022 16:16:08 +0200 Subject: [PATCH] alignment fix --- src/mpdevil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mpdevil.py b/src/mpdevil.py index cc334da..69dd2c1 100755 --- a/src/mpdevil.py +++ b/src/mpdevil.py @@ -1310,7 +1310,7 @@ class AddToPlaylistPopover(Gtk.Popover): super().__init__() self._client=client self.uri=None - self._vbox=Gtk.ButtonBox(orientation=Gtk.Orientation.VERTICAL, margin=10) + self._vbox=Gtk.ButtonBox(orientation=Gtk.Orientation.VERTICAL, margin=10, valign=Gtk.Align.START) self._scroll=Gtk.ScrolledWindow(child=self._vbox, propagate_natural_height=True) self._scroll.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC) self.connect("show", self._on_show)