From 8a66a7eab0dd43775ffc0cbe7e6e6eeb976e841d Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Wed, 6 Mar 2024 13:06:22 +0100 Subject: [PATCH] PROPERTIES_FRAME: fixes a focus issue (perhaps Windows specific). From master branch --- pagelayout_editor/dialogs/properties_frame.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pagelayout_editor/dialogs/properties_frame.cpp b/pagelayout_editor/dialogs/properties_frame.cpp index ca197847b3..4732bc2a73 100644 --- a/pagelayout_editor/dialogs/properties_frame.cpp +++ b/pagelayout_editor/dialogs/properties_frame.cpp @@ -2,7 +2,7 @@ * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2013 CERN - * Copyright (C) 2021-2023 KiCad Developers, see AUTHORS.txt for contributors. + * Copyright (C) 2021-2024 KiCad Developers, see AUTHORS.txt for contributors. * @author Jean-Pierre Charras, jp.charras at wanadoo.fr * * This program is free software; you can redistribute it and/or @@ -633,6 +633,7 @@ void PROPERTIES_FRAME::onScintillaCharAdded( wxStyledTextEvent &aEvent ) void PROPERTIES_FRAME::onScintillaFocusLost( wxFocusEvent& aEvent ) { m_stcText->AutoCompCancel(); + aEvent.Skip(); }