From 2e0b3b8a82d87c4e2f42115f799128605c6150f8 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sun, 26 Sep 2021 15:27:46 +0100 Subject: [PATCH] Attempt to fix 0-sized error dialogs. --- common/dialogs/html_message_box.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/dialogs/html_message_box.cpp b/common/dialogs/html_message_box.cpp index 9c21ab7f1c..29103a8f2e 100644 --- a/common/dialogs/html_message_box.cpp +++ b/common/dialogs/html_message_box.cpp @@ -94,6 +94,8 @@ void HTML_MESSAGE_BOX::reload() background.GetAsString( wxC2S_HTML_SYNTAX ), foreground.GetAsString( wxC2S_HTML_SYNTAX ), m_source ) ); + + Layout(); }