Revert "Don't overwrite project path in status"

This reverts commit 7018b5e6a2.
This commit is contained in:
Jon Evans 2021-02-13 18:37:39 -05:00
parent 7018b5e6a2
commit 97465e8260
1 changed files with 2 additions and 2 deletions

View File

@ -1190,12 +1190,12 @@ void PROJECT_TREE_PANE::FileWatcherReset()
// choosing to fault on an invalid event ID instead of sanely ignoring them we need to
// avoid spawning a filewatcher. Unforunately this punishes corporate environments with
// Windows Server shares :/
wxLogTrace( tracePathsAndFiles, "Network path: not monitoring folder changes" );
m_Parent->SetStatusText( _( "Network path: not monitoring folder changes" ), 0 );
return;
}
else
{
wxLogTrace( tracePathsAndFiles, "Local path: monitoring folder changes" );
m_Parent->SetStatusText( _( "Local path: monitoring folder changes" ), 0 );
}
#endif