From 78af1daa2e087b947eb193238ba8995d8e842239 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Mon, 30 Sep 2019 19:43:25 +0200 Subject: [PATCH] Fix an issue in DIALOG_NETLIST: if the netlist filename does not exist, one cannot always modify the entered name. (from master branch) --- pcbnew/dialogs/dialog_netlist.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/pcbnew/dialogs/dialog_netlist.cpp b/pcbnew/dialogs/dialog_netlist.cpp index eaf1646831..351d5cc0e0 100644 --- a/pcbnew/dialogs/dialog_netlist.cpp +++ b/pcbnew/dialogs/dialog_netlist.cpp @@ -294,6 +294,7 @@ void DIALOG_NETLIST::OnTestFootprintsClick( wxCommandEvent& event ) void DIALOG_NETLIST::OnFilenameKillFocus( wxFocusEvent& event ) { onFilenameChanged(); + event.Skip(); }