From 605bc8c1952ee1cba6d9f8ff098b5930ab6a9912 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 27 Feb 2020 21:39:57 +0100 Subject: [PATCH] Make content list and buttons taller on low-res displays. --- src/wx/content_panel.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/wx/content_panel.cc b/src/wx/content_panel.cc index 18318d4b2..9a3e5ce9a 100644 --- a/src/wx/content_panel.cc +++ b/src/wx/content_panel.cc @@ -155,9 +155,12 @@ ContentPanel::ContentPanel (wxNotebook* n, shared_ptr film, weak_ptrSplitHorizontally (top, _notebook, screen->height > 800 ? -600 : -150); + _splitter->SplitHorizontally (top, _notebook, screen->height > 800 ? -600 : 250); } _timing_panel = new TimingPanel (this, _film_viewer); -- 2.30.2