From 518fdb93e5da2c133ae5079c027638bc948839d6 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Mon, 7 Jan 2013 21:52:15 +0100 Subject: [PATCH] Pcbnew: Fix unwanted selection clarification popmenu in board editor after double clicking on a DRC Unconnected error (For DRC clearance error, it was fixed in bzr 3838, but forgotten for DRC Unconnected error) --- pcbnew/dialogs/dialog_drc.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pcbnew/dialogs/dialog_drc.cpp b/pcbnew/dialogs/dialog_drc.cpp index b71d8db831..d65d497784 100644 --- a/pcbnew/dialogs/dialog_drc.cpp +++ b/pcbnew/dialogs/dialog_drc.cpp @@ -489,8 +489,9 @@ void DIALOG_DRC_CONTROL::OnLeftDClickUnconnected( wxMouseEvent& event ) Show( false ); - // intermittently, still get the popup window, even with this. - event.StopPropagation(); + // We do not want the clarification popup window. + // when releasing the left button in the main window + m_Parent->SkipNextLeftButtonReleaseEvent(); } } }