From b401c214f59fcc122ba886c23b328b90e7f17b53 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sun, 6 Aug 2023 20:33:43 +0100 Subject: [PATCH] Fix missing variable initialization. --- pcbnew/router/length_tuner_tool.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pcbnew/router/length_tuner_tool.cpp b/pcbnew/router/length_tuner_tool.cpp index a8faaae31f..481e73c866 100644 --- a/pcbnew/router/length_tuner_tool.cpp +++ b/pcbnew/router/length_tuner_tool.cpp @@ -80,7 +80,8 @@ static TOOL_ACTION ACT_AmplDecrease( "pcbnew.LengthTuner.AmplDecrease", LENGTH_TUNER_TOOL::LENGTH_TUNER_TOOL() : - TOOL_BASE( "pcbnew.LengthTuner" ) + TOOL_BASE( "pcbnew.LengthTuner" ), + m_inLengthTuner( false ) { // set the initial tune mode for the settings dialog, // in case the dialog is opened before the tool is activated the first time