From 71a0322ec6425bfadb0fa97f9ffd69cd995df490 Mon Sep 17 00:00:00 2001 From: Hombre Date: Sun, 3 Jun 2018 01:18:52 +0200 Subject: [PATCH] Setting a minimal height to the FileBrowser's History panel (no issue) --- rtgui/filepanel.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rtgui/filepanel.cc b/rtgui/filepanel.cc index 40e9440f6..260a6f448 100644 --- a/rtgui/filepanel.cc +++ b/rtgui/filepanel.cc @@ -81,6 +81,7 @@ FilePanel::FilePanel () : parent(nullptr), error(0) tpc->addPParamsChangeListener (history); history->setProfileChangeListener (tpc); + history->set_size_request(-1, 50); Gtk::ScrolledWindow* sFilterPanel = Gtk::manage ( new Gtk::ScrolledWindow() ); filterPanel = Gtk::manage ( new FilterPanel () ); @@ -120,7 +121,7 @@ FilePanel::FilePanel () : parent(nullptr), error(0) tpcPaned = Gtk::manage ( new Gtk::VPaned () ); tpcPaned->pack1 (*tpc->toolPanelNotebook, false, true); - tpcPaned->pack2 (*history, true, true); + tpcPaned->pack2 (*history, true, false); rightNotebook->append_page (*sFilterPanel, *filtLab); rightNotebook->append_page (*inspectorPanel, *inspectLab);