From: Carl Hetherington Date: Thu, 27 Feb 2020 20:39:57 +0000 (+0100) Subject: Make content list and buttons taller on low-res displays. X-Git-Tag: v2.14.31~2 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=605bc8c1952ee1cba6d9f8ff098b5930ab6a9912 Make content list and buttons taller on low-res displays. --- 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);