From d2585fda5095d408cfd30c085ff23127c36efc98 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Thu, 4 Oct 2018 16:54:39 +0200 Subject: [PATCH] DIALOG_SHIM: make default style wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER. --- include/dialog_shim.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dialog_shim.h b/include/dialog_shim.h index 922b88330e..3a95fde243 100644 --- a/include/dialog_shim.h +++ b/include/dialog_shim.h @@ -73,7 +73,7 @@ public: DIALOG_SHIM( wxWindow* aParent, wxWindowID id, const wxString& title, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, - long style = wxDEFAULT_DIALOG_STYLE, + long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER, const wxString& name = wxDialogNameStr );