From: Carl Hetherington Date: Wed, 25 Jul 2018 22:50:15 +0000 (+0100) Subject: Fix crash on scaling the ccap window to be very small. X-Git-Tag: v2.13.40~4 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;h=c252bea0407deedad31c67ab7dd5de4890cafd53;p=dcpomatic.git Fix crash on scaling the ccap window to be very small. --- diff --git a/src/wx/closed_captions_dialog.cc b/src/wx/closed_captions_dialog.cc index 857db66a8..1e13f867a 100644 --- a/src/wx/closed_captions_dialog.cc +++ b/src/wx/closed_captions_dialog.cc @@ -23,6 +23,7 @@ #include using std::list; +using std::max; using std::cout; using std::make_pair; using boost::shared_ptr; @@ -57,7 +58,7 @@ ClosedCaptionsDialog::paint () dc.SetTextForeground (*wxWHITE); /* Choose a font which fits vertically */ - int const line_height = dc.GetSize().GetHeight() / _num_lines; + int const line_height = max (8, dc.GetSize().GetHeight() / _num_lines); wxFont font (*wxNORMAL_FONT); font.SetPixelSize (wxSize (0, line_height * 0.8)); dc.SetFont (font);