From e1476dea58e8ff5c129d4b53e9e679910d72e47e Mon Sep 17 00:00:00 2001 From: Jon Evans Date: Tue, 19 May 2020 23:56:50 -0400 Subject: [PATCH] Fix build --- eeschema/tools/sch_editor_control.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eeschema/tools/sch_editor_control.cpp b/eeschema/tools/sch_editor_control.cpp index 2054e7cc4f..5aff5918a3 100644 --- a/eeschema/tools/sch_editor_control.cpp +++ b/eeschema/tools/sch_editor_control.cpp @@ -455,7 +455,8 @@ 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." ) ); + m_frame->ShowFindReplaceStatus( + msg + _( "\nFind again to wrap around to the start." ), 4000 ); wrapAroundTimer.StartOnce( 4000 ); }