From 93d0707cd6393c84b4d2199fa182f280f6313bd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danielle=20For=C3=A9?= Date: Thu, 11 Sep 2025 11:15:43 -0700 Subject: [PATCH] Revert "MainWindow: search popover use propagate_natural_height (#112)" This reverts commit 572701bfe1def2ec73f1166eda6c802b526fa99b. --- src/MainWindow.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MainWindow.vala b/src/MainWindow.vala index 597bc7b..8e5a8c8 100644 --- a/src/MainWindow.vala +++ b/src/MainWindow.vala @@ -75,8 +75,7 @@ public class Maps.MainWindow : Adw.ApplicationWindow { var search_res_list_scrolled = new Gtk.ScrolledWindow () { child = search_listview, hscrollbar_policy = Gtk.PolicyType.NEVER, - max_content_height = 500, - propagate_natural_height = true + vexpand = true }; var search_stack = new Gtk.Stack () { @@ -87,6 +86,7 @@ public class Maps.MainWindow : Adw.ApplicationWindow { search_res_popover = new Gtk.Popover () { width_request = 400, + height_request = 500, has_arrow = false, child = search_stack };