From 5d171ed359993d2be4bc7e0e52de329cc9fca091 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 7 Jul 2022 15:20:57 +0200 Subject: [PATCH] Hack more height for HTMLDialog. --- src/wx/html_dialog.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.30.2