From d97d174b6a11ad3a498f75af35c34c6c7d3dd326 Mon Sep 17 00:00:00 2001 From: YuSanka Date: Mon, 9 Jan 2023 13:00:09 +0100 Subject: [PATCH] Fix for #9365 - Send System Info pop-up --- src/slic3r/GUI/SendSystemInfoDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/SendSystemInfoDialog.cpp b/src/slic3r/GUI/SendSystemInfoDialog.cpp index dfb442d18c..ffa1474789 100644 --- a/src/slic3r/GUI/SendSystemInfoDialog.cpp +++ b/src/slic3r/GUI/SendSystemInfoDialog.cpp @@ -658,7 +658,7 @@ SendSystemInfoDialog::SendSystemInfoDialog(wxWindow* parent) wxString message; bool success = send_info(message); if (! message.IsEmpty()) - InfoDialog(nullptr, wxEmptyString, message).ShowModal(); + InfoDialog(this, wxEmptyString, message).ShowModal(); if (success) { save_version(); EndModal(0);