Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuSanka <yusanka@gmail.com>2019-01-15 12:24:58 +0300
committerYuSanka <yusanka@gmail.com>2019-01-15 12:31:34 +0300
commit519f5e5ea7c96db4b7ae64c7f48d1bc8c720dbf3 (patch)
treed06363b6603d079a61acdb33cbebcab935409176 /src/slic3r/GUI/SysInfoDialog.cpp
parent7cb90956eef985ad4e74ab2e5eae8f8da848aa82 (diff)
Fix of #1606
+ Added dialog closing by "Esc" button for the FirmwareDialog.
Diffstat (limited to 'src/slic3r/GUI/SysInfoDialog.cpp')
-rw-r--r--src/slic3r/GUI/SysInfoDialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slic3r/GUI/SysInfoDialog.cpp b/src/slic3r/GUI/SysInfoDialog.cpp
index 110bfaf44..5da74b4bb 100644
--- a/src/slic3r/GUI/SysInfoDialog.cpp
+++ b/src/slic3r/GUI/SysInfoDialog.cpp
@@ -120,7 +120,7 @@ SysInfoDialog::SysInfoDialog()
this->Bind(wxEVT_BUTTON, &SysInfoDialog::onCloseDialog, this, wxID_OK);
main_sizer->Add(buttons, 0, wxEXPAND | wxRIGHT | wxBOTTOM, 3);
- this->Bind(wxEVT_LEFT_DOWN, &SysInfoDialog::onCloseDialog, this);
+// this->Bind(wxEVT_LEFT_DOWN, &SysInfoDialog::onCloseDialog, this);
logo->Bind(wxEVT_LEFT_DOWN, &SysInfoDialog::onCloseDialog, this);
SetSizer(main_sizer);