From 6fd1f6715a3dfce20c1351c389668cf92753c631 Mon Sep 17 00:00:00 2001 From: heliguy4599 Date: Thu, 14 Nov 2024 00:54:06 -0500 Subject: [PATCH] Fix sidebar button being visible on launch for wide windows --- src/gtk/sidebar_button.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gtk/sidebar_button.py b/src/gtk/sidebar_button.py index a327592..287af38 100644 --- a/src/gtk/sidebar_button.py +++ b/src/gtk/sidebar_button.py @@ -18,3 +18,4 @@ class SidebarButton(Gtk.Button): # Apply self.set_icon_name("dock-left-symbolic") self.set_tooltip_text(_("Show Sidebar")) + self.set_visible(False)