From 8b91cd8804a5445d4109aee257551f96c3ea229e Mon Sep 17 00:00:00 2001 From: Twan van Laarhoven Date: Fri, 22 May 2020 00:26:51 +0200 Subject: [PATCH] Message box when there are exceptions when creating a set, because there is no console yet --- src/gui/new_window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/new_window.cpp b/src/gui/new_window.cpp index 883d9df4..8c9f6262 100644 --- a/src/gui/new_window.cpp +++ b/src/gui/new_window.cpp @@ -96,7 +96,7 @@ void NewSetWindow::done() { set->validate(); EndModal(wxID_OK); } catch (const Error& e) { - handle_error(e); + handle_error_now(e); } }