Don't overwrite project path in status
This commit is contained in:
parent
25f621e880
commit
7018b5e6a2
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue