From c4142a5842e0ada1e1019b8a6bb87b69164a77d0 Mon Sep 17 00:00:00 2001 From: Ian McInerney Date: Wed, 20 May 2020 11:43:50 +0100 Subject: [PATCH] Remaining part of code forgotten by 73a1ce3e --- eeschema/tools/sch_editor_control.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/eeschema/tools/sch_editor_control.cpp b/eeschema/tools/sch_editor_control.cpp index 5aff5918a3..3b989c13c1 100644 --- a/eeschema/tools/sch_editor_control.cpp +++ b/eeschema/tools/sch_editor_control.cpp @@ -455,8 +455,9 @@ int SCH_EDITOR_CONTROL::FindNext( const TOOL_EVENT& aEvent ) wxString msg = searchAllSheets ? _( "Reached end of schematic." ) : _( "Reached end of sheet." ); - m_frame->ShowFindReplaceStatus( - msg + _( "\nFind again to wrap around to the start." ), 4000 ); + // Show the popup during the timeperiod the user can wrap the search + m_frame->ShowFindReplaceStatus( msg + _( " Find again to wrap around to the start." ), + 4000 ); wrapAroundTimer.StartOnce( 4000 ); }