From f0a26e4be00606570763cb8c925010b65f3127d4 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Thu, 9 Sep 2021 12:20:02 +0100 Subject: [PATCH] Attempt to fix long-click issue (possibly just a typo). Fixes https://gitlab.com/kicad/code/kicad/issues/9124 --- pcbnew/tools/pcb_selection_tool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/tools/pcb_selection_tool.cpp b/pcbnew/tools/pcb_selection_tool.cpp index efe4d4c771..ca120a74cd 100644 --- a/pcbnew/tools/pcb_selection_tool.cpp +++ b/pcbnew/tools/pcb_selection_tool.cpp @@ -272,7 +272,7 @@ int PCB_SELECTION_TOOL::Main( const TOOL_EVENT& aEvent ) { // If there is no disambiguation, this routine is still running and will // register a `click` event when released - if( !m_disambiguateTimer.IsRunning() ) + if( m_disambiguateTimer.IsRunning() ) { m_disambiguateTimer.Stop();