From 860fd788f2b23a4bb4eef4f03d9c7dd5f14a2fa4 Mon Sep 17 00:00:00 2001 From: SoftCoder Date: Mon, 26 Oct 2015 17:26:42 -0700 Subject: [PATCH] - fixed issue #75 (map editor file->new refreshes afterwards) --- source/glest_map_editor/main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/glest_map_editor/main.cpp b/source/glest_map_editor/main.cpp index d4ae98b66..6264697df 100644 --- a/source/glest_map_editor/main.cpp +++ b/source/glest_map_editor/main.cpp @@ -841,6 +841,9 @@ void MainWindow::onMenuEditReset(wxCommandEvent &event) { } currentFile = ""; fileName = "New (unsaved) map"; + + wxPaintEvent ev; + onPaint(ev); } void MainWindow::onMenuEditResetPlayers(wxCommandEvent &event) {