From d9fc032cd767cd36d98b5959b40b146dde0d9ca0 Mon Sep 17 00:00:00 2001 From: anders_k Date: Wed, 30 Apr 2014 20:45:27 +0000 Subject: [PATCH] Make sure client rectangle is the correct width so we don't get a blank spot to the right of the header image because our wxWidgets border calculation is sometimes wrong. git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6463 212acab6-be3b-0410-9dea-997c60f758d6 --- Contrib/NSIS Menu/nsismenu/nsismenu.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Contrib/NSIS Menu/nsismenu/nsismenu.cpp b/Contrib/NSIS Menu/nsismenu/nsismenu.cpp index 4eab3c95..9388d913 100644 --- a/Contrib/NSIS Menu/nsismenu/nsismenu.cpp +++ b/Contrib/NSIS Menu/nsismenu/nsismenu.cpp @@ -110,6 +110,7 @@ private: // Show it and tell the application that it's our main window + frame->SetClientSize(HTMLW, HTMLH); frame->Show(TRUE); SetTopWindow(frame);