From: Carl Hetherington Date: Thu, 7 Jul 2022 13:20:57 +0000 (+0200) Subject: Hack more height for HTMLDialog. X-Git-Tag: v2.16.19~6 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=5d171ed359993d2be4bc7e0e52de329cc9fca091 Hack more height for HTMLDialog. --- diff --git a/src/wx/html_dialog.cc b/src/wx/html_dialog.cc index 59bc8a3e8..cce62e1eb 100644 --- a/src/wx/html_dialog.cc +++ b/src/wx/html_dialog.cc @@ -61,7 +61,7 @@ HTMLDialog::HTMLDialog (wxWindow* parent, wxString title, wxString html) SetSize (800, -1); /* Set height */ - SetSize (h->GetInternalRepresentation()->GetWidth(), h->GetInternalRepresentation()->GetHeight() + 64); + SetSize (h->GetInternalRepresentation()->GetWidth(), h->GetInternalRepresentation()->GetHeight() + 256); }