Don't overwrite project path in status

This commit is contained in:
Jon Evans 2021-02-13 17:21:24 -05:00
parent 25f621e880
commit 7018b5e6a2
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 // 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 // avoid spawning a filewatcher. Unforunately this punishes corporate environments with
// Windows Server shares :/ // Windows Server shares :/
m_Parent->SetStatusText( _( "Network path: not monitoring folder changes" ), 0 ); wxLogTrace( tracePathsAndFiles, "Network path: not monitoring folder changes" );
return; return;
} }
else else
{ {
m_Parent->SetStatusText( _( "Local path: monitoring folder changes" ), 0 ); wxLogTrace( tracePathsAndFiles, "Local path: monitoring folder changes" );
} }
#endif #endif