fix using is queue empty when it should be is_idle
[clinton/Smoothieware.git] / src / modules / utils / panel / screens / cnc / WatchScreen.cpp
index 3ebf922..c740576 100644 (file)
@@ -218,7 +218,7 @@ const char *WatchScreen::get_status()
     if (THEPANEL->is_playing())
         return THEPANEL->get_playing_file();
 
-    if (!THEKERNEL->conveyor->is_queue_empty())
+    if (!THECONVEYOR->is_idle())
         return "Running";
 
     const char *ip = get_network();