From 38ee4359eba640f152b4e783ad0ebf0db54bd5be Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Mon, 28 Apr 2025 06:10:16 -0700 Subject: [PATCH] Keep the drill results visible When clicking "Generate", we want to see if the drill action was successful so we must avoid closing the window prematurely --- pcbnew/dialogs/dialog_gendrill.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pcbnew/dialogs/dialog_gendrill.cpp b/pcbnew/dialogs/dialog_gendrill.cpp index 67c6d19567..ae124acc9d 100644 --- a/pcbnew/dialogs/dialog_gendrill.cpp +++ b/pcbnew/dialogs/dialog_gendrill.cpp @@ -132,6 +132,8 @@ bool DIALOG_GENDRILL::TransferDataFromWindow() { genDrillAndMapFiles( true, m_cbGenerateMap->GetValue(), m_generateTentingLayers->GetValue() ); + // Keep the window open so that the user can see the result + return false; } else {