mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 16:57:53 -06:00
Fix of #1606
+ Added dialog closing by "Esc" button for the FirmwareDialog.
This commit is contained in:
parent
7cb90956ee
commit
519f5e5ea7
3 changed files with 5 additions and 2 deletions
|
@ -775,6 +775,8 @@ FirmwareDialog::FirmwareDialog(wxWindow *parent) :
|
|||
SetSize(std::max(size.GetWidth(), static_cast<int>(MIN_WIDTH)), std::max(size.GetHeight(), static_cast<int>(MIN_HEIGHT)));
|
||||
Layout();
|
||||
|
||||
SetEscapeId(wxID_CLOSE); // To close the dialog using "Esc" button
|
||||
|
||||
// Bind events
|
||||
|
||||
p->hex_picker->Bind(wxEVT_FILEPICKER_CHANGED, [this](wxFileDirPickerEvent& evt) {
|
||||
|
@ -826,6 +828,7 @@ FirmwareDialog::FirmwareDialog(wxWindow *parent) :
|
|||
if (this->p->avrdude) {
|
||||
evt.Veto();
|
||||
} else {
|
||||
this->EndModal(wxID_CLOSE);
|
||||
evt.Skip();
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue