Index: /trunk/FACT++/gui/FactGui.h
===================================================================
--- /trunk/FACT++/gui/FactGui.h	(revision 11158)
+++ /trunk/FACT++/gui/FactGui.h	(revision 11159)
@@ -1087,9 +1087,9 @@
     void handleFadFwVersion(const DimData &d)
     {
-        if (!CheckSize(d, 40*sizeof(float)))
+        if (!CheckSize(d, 43*sizeof(float)))
             return;
 
         const float *ptr = d.ptr<float>();
-        fFadFwVersion->setValue(GetFirst(ptr));
+        fFadFwVersion->setValue(ptr[1]);
 
         ostringstream tip;
@@ -1103,5 +1103,5 @@
             tip << "<tr><th>" << c << "</th>";
             for (int b=0; b<10; b++)
-                tip << "<td>" << ptr[c*10+b] << "</td>";
+                tip << "<td>" << ptr[c*10+b+3] << "</td>";
             tip << "</tr>";
         }
@@ -1109,4 +1109,6 @@
 
         fFadFwVersion->setToolTip(tip.str().c_str());
+
+        SetLedColor(fFadLEDFwVersion, d.qos?kLedGreen:kLedOrange, d.time);
     }
 
@@ -1126,5 +1128,5 @@
         fFadEvtDel->setValue(stat[3]);
         fFadEvtTot->setValue(stat[4]);
-        fFadEvtRead->setValue(stat[6]);
+        fFadEvtRead->setValue(stat[6]/1024.);
         fFadEvtConn->setValue(stat[7]);
     }
