From 7c88a791534d756b578f0be5fb529281ec566654 Mon Sep 17 00:00:00 2001 From: Danielle Fore Date: Tue, 23 Jan 2024 12:33:00 -0800 Subject: [PATCH] Remove dead ref --- src/Application.vala | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Application.vala b/src/Application.vala index fbfae7e0..873c1335 100644 --- a/src/Application.vala +++ b/src/Application.vala @@ -30,7 +30,6 @@ namespace Switchboard { private Gtk.Window main_window; private Switchboard.CategoryView category_view; private Gtk.Label title_label; - private Gtk.Stack title_stack; private static bool opened_directly = false; private static string? link = null; @@ -226,7 +225,6 @@ namespace Switchboard { if (plug != null) { plug.shown (); main_window.title = plug.display_name; - title_stack.visible_child = title_label; } else { critical ("Visible child is not CategoryView nor is associated with a Plug."); } @@ -240,8 +238,6 @@ namespace Switchboard { navigation_button.show (); } - - // search_box.text = ""; } }