From 4ba4081a90ab18c3564ba7911d6e5134360a8d9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danielle=20For=C3=A9?= Date: Thu, 9 May 2024 09:36:06 -0700 Subject: [PATCH] CategoryView: add a big window handle --- src/CategoryView.vala | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/CategoryView.vala b/src/CategoryView.vala index 26124854..31dc5d20 100644 --- a/src/CategoryView.vala +++ b/src/CategoryView.vala @@ -88,7 +88,11 @@ public class Switchboard.CategoryView : Adw.NavigationPage { }; toolbarview.add_top_bar (headerbar); - child = toolbarview; + var window_handle = new Gtk.WindowHandle () { + child = toolbarview + }; + + child = window_handle; title = _("All Settings"); load_default_plugs.begin ();