From af4217d20b922522aa6cfb5a4fa32b57cc9a60e7 Mon Sep 17 00:00:00 2001 From: Thanatomanic Date: Mon, 20 Aug 2018 08:50:19 +0200 Subject: [PATCH] Fix for left pane not appearing after closing, thanks to @Hombre57 --- rtgui/editorpanel.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/rtgui/editorpanel.cc b/rtgui/editorpanel.cc index dbcc6fd50..cb4a58317 100644 --- a/rtgui/editorpanel.cc +++ b/rtgui/editorpanel.cc @@ -522,6 +522,7 @@ EditorPanel::EditorPanel (FilePanel* filePanel) leftsubbox->show_all (); leftbox->pack2 (*leftsubbox, true, true); + leftbox->show_all (); // build the middle of the screen Gtk::Box* editbox = Gtk::manage (new Gtk::Box (Gtk::ORIENTATION_VERTICAL));