Index: /trunk/FACT++/gui/FactGui.h
===================================================================
--- /trunk/FACT++/gui/FactGui.h	(revision 17216)
+++ /trunk/FACT++/gui/FactGui.h	(revision 17217)
@@ -2559,4 +2559,5 @@
             if (s.index==FTM::State::kConnected    ||
                 s.index==FTM::State::kIdle         ||
+                s.index==FTM::State::kValid        ||
                 configuring) // Dim connection / FTM connected
                 SetLedColor(fStatusFTMLed, kLedGreen, time);
@@ -2564,11 +2565,12 @@
                 SetLedColor(fStatusFTMLed, kLedGreenCheck, time);
             if (s.index==FTM::State::kConnected ||
-                s.index==FTM::State::kIdle) // Dim connection / FTM connected
+                s.index==FTM::State::kIdle ||
+                s.index==FTM::State::kValid) // Dim connection / FTM connected
                 enable = true;
             if (s.index>=FTM::State::kConfigError1) // Dim connection / FTM connected
                 SetLedColor(fStatusFTMLed, kLedGreenWarn, time);
 
-            fFtmStartRun->setEnabled(!configuring && enable);
-            fFtmStopRun->setEnabled(!configuring && (enable || s.index==FTM::State::kTriggerOn));
+            fFtmStartRun->setEnabled(!configuring && enable && s.index!=FTM::State::kTriggerOn);
+            fFtmStopRun->setEnabled(!configuring && !enable);
 
             fTriggerWidget->setEnabled(enable);
