eeschema: Update titlebar when searching schematics

Fixes: lp:1851641
* https://bugs.launchpad.net/kicad/+bug/1851641
This commit is contained in:
Ian McInerney 2019-11-24 01:24:32 +00:00
parent 82f55d300b
commit 087a90cf99
2 changed files with 5 additions and 0 deletions

View File

@ -106,6 +106,10 @@ enum SCH_CLEANUP_FLAGS {
*/
class SCH_EDIT_FRAME : public SCH_BASE_FRAME
{
// The schematic editor control class should be able to access some internal
// functions of the editor frame.
friend class SCH_EDITOR_CONTROL;
private:
wxString m_SelectedNetName;

View File

@ -167,6 +167,7 @@ int SCH_EDITOR_CONTROL::UpdateFind( const TOOL_EVENT& aEvent )
getView()->UpdateItems();
m_frame->GetCanvas()->Refresh();
m_frame->UpdateTitle();
return 0;
}