From 119a0f665bbf4692977e091261a5e39e366e5771 Mon Sep 17 00:00:00 2001 From: Chris Pavlina Date: Sat, 6 Jan 2018 14:51:53 -0700 Subject: [PATCH] DIALOG_SYMBOL_REMAP: raise after remap is complete On macOS in particular, there is a tendency for this to fall behind other windows where the user has no clue it's still up. --- eeschema/dialogs/dialog_symbol_remap.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eeschema/dialogs/dialog_symbol_remap.cpp b/eeschema/dialogs/dialog_symbol_remap.cpp index 1ffcde14ad..b3a1a6dbf1 100644 --- a/eeschema/dialogs/dialog_symbol_remap.cpp +++ b/eeschema/dialogs/dialog_symbol_remap.cpp @@ -6,7 +6,7 @@ * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2017 Wayne Stambaugh - * Copyright (C) 2017 KiCad Developers, see AUTHORS.txt for contributors. + * Copyright (C) 2017-2018 KiCad Developers, see AUTHORS.txt for contributors. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -111,6 +111,7 @@ void DIALOG_SYMBOL_REMAP::OnRemapSymbols( wxCommandEvent& aEvent ) Prj().SetElem( PROJECT::ELEM_SCH_PART_LIBS, NULL ); Prj().SchLibs(); + Raise(); m_remapped = true; }