Index: /trunk/FACT++/gui/FactGui.h
===================================================================
--- /trunk/FACT++/gui/FactGui.h	(revision 12133)
+++ /trunk/FACT++/gui/FactGui.h	(revision 12134)
@@ -3402,19 +3402,13 @@
         const PixelMapEntry &entry = fPixelMap.index(isw);
 
-        const int ihw = entry.hw();
-
-        const int idx = fPatchHW[isw];
-        int ii = 0;
-        for (; ii<160;ii++)
-            if (idx ==fPatchMapHW[ii])
-                break;
-
-        const int patch = idx%4;
-        const int board = (idx/4)%10;
-        const int crate = (idx/4)/10;
         QString tipText;
         tipText += fRatesCanv->GetName();
         ostringstream str;
-        str << "  ||  Pixel=" << isw << " (hw=" << ihw << ")  ||  Patch=" << ii << " (hw=" << fPatchMapHW[idx] << "; Crate=" << crate << " Board=" << board << " Patch=" << patch << ")";
+        str << setfill('0') <<
+            "  ||  HW: " << entry.crate() << "|" << entry.board() << "|" << entry.patch() << "|" << entry.pixel() << " (crate|board|patch|pixel)" <<
+            "  ||  HV: " << entry.hv_board << "|" << setw(2) << entry.hv_channel << " (board|channel)" <<
+            "  ||  ID: " << isw;
+
+
         tipText += str.str().c_str();
         fStatusBar->showMessage(tipText, 3000);
@@ -4099,4 +4093,7 @@
         fEventCanv4->setMouseTracking(true);
 
+        fBiasCamV->setMouseTracking(true);
+        fBiasCamA->setMouseTracking(true);
+
         fFeedbackDevCam->setMouseTracking(true);
         fFeedbackCmdCam->setMouseTracking(true);
@@ -4129,4 +4126,9 @@
                 this, SLOT(slot_CameraMouseMove(int)));
 
+        connect(fBiasCamV, SIGNAL(signalPixelMoveOver(int)),
+                this, SLOT(slot_CameraMouseMove(int)));
+        connect(fBiasCamA, SIGNAL(signalPixelMoveOver(int)),
+                this, SLOT(slot_CameraMouseMove(int)));
+
         connect(fFeedbackDevCam, SIGNAL(signalPixelMoveOver(int)),
                 this, SLOT(slot_CameraMouseMove(int)));
