From b869c052a4309767ea22d8a0e91a1a6891ded574 Mon Sep 17 00:00:00 2001 From: Morgan Hardwood Date: Wed, 16 Sep 2015 23:04:12 +0200 Subject: [PATCH] Workaround to History panel expanding under the left RT window edge --- rtgui/history.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtgui/history.cc b/rtgui/history.cc index 4aa6dc774..5e5f5a804 100644 --- a/rtgui/history.cc +++ b/rtgui/history.cc @@ -39,7 +39,7 @@ History::History (bool bookmarkSupport) : blistener(NULL), tpc (NULL), bmnum (1) // History List // ~~~~~~~~~~~~ hscrollw = Gtk::manage (new Gtk::ScrolledWindow ()); - hscrollw->set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC); + hscrollw->set_policy (Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC); Gtk::Frame* histFrame = Gtk::manage (new Gtk::Frame (M("HISTORY_LABEL"))); histFrame->add (*hscrollw);