From 7018b5e6a206fe7de10ea56547fdd6f38e1370e5 Mon Sep 17 00:00:00 2001 From: Jon Evans Date: Sat, 13 Feb 2021 17:21:24 -0500 Subject: [PATCH] Don't overwrite project path in status --- kicad/project_tree_pane.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kicad/project_tree_pane.cpp b/kicad/project_tree_pane.cpp index b02b802e50..1a72208a03 100644 --- a/kicad/project_tree_pane.cpp +++ b/kicad/project_tree_pane.cpp @@ -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 :/ - m_Parent->SetStatusText( _( "Network path: not monitoring folder changes" ), 0 ); + wxLogTrace( tracePathsAndFiles, "Network path: not monitoring folder changes" ); return; } else { - m_Parent->SetStatusText( _( "Local path: monitoring folder changes" ), 0 ); + wxLogTrace( tracePathsAndFiles, "Local path: monitoring folder changes" ); } #endif