Index: trunk/FACT++/gui/QCameraWidget.cc
===================================================================
--- trunk/FACT++/gui/QCameraWidget.cc	(revision 11986)
+++ trunk/FACT++/gui/QCameraWidget.cc	(revision 11987)
@@ -97,18 +97,18 @@
         str.precision(2);
         str.setf(ios::fixed,ios::floatfield);
-        str << "Med. " << fmedian << unitsText;
-        renderText(1, height()-4*textSize-10, QString(str.str().c_str()));
-        str.str("");
-        str << "Mea. " << fmean <<  unitsText;
-        renderText(1, height()-3*textSize-8, QString(str.str().c_str()));
-        str.str("");
-        str << "Rms  " << frms <<  unitsText;
-        renderText(1, height()-2*textSize-6, QString(str.str().c_str()));
-        str.str("");
-        str << "Min. " << fmin << unitsText;
-        renderText(1, height()-1*textSize-4, QString(str.str().c_str()));
-        str.str("");
-        str << "Max. " << fmax << unitsText;
-        renderText(1, height()-2, QString(str.str().c_str()));
+        str << "Med " << fmedian;// << unitsText;
+        renderText(3, height()-3-3*textSize-27, QString(str.str().c_str()));
+        str.str("");
+        str << "Avg " << fmean;// <<  unitsText;
+        renderText(3, height()-3-4*textSize-35, QString(str.str().c_str()));
+        str.str("");
+        str << "RMS " << frms;// <<  unitsText;
+        renderText(3, height()-3-2*textSize-21, QString(str.str().c_str()));
+        str.str("");
+        str << "Min " << fmin;// << unitsText;
+        renderText(3, height()-3-1*textSize-8, QString(str.str().c_str()));
+        str.str("");
+        str << "Max " << fmax;// << unitsText;
+        renderText(3, height()-2-3, QString(str.str().c_str()));
         //then draw the values beside the scale
         //the difficulty here is to write the correct min/max besides the scale
@@ -128,8 +128,11 @@
         if (textSize > 12) fontWidth-=3; else fontWidth -=2;
         if (textSize < 7) fontWidth++;
-        for (int i=0;i<6;i++)
+        for (int i=0;i<11;i++)
         {
             str.str("");
-            str << value << unitsText;
+            str << value;
+            if (i==0 || i==10)
+                str << ' ' << unitsText;
+            str << ' ';
             int h = (value - min)*pixelSpan;
             if (logScale && h != 0)
@@ -143,8 +146,8 @@
             h = height()-h;
             int w = width() - (width()/50) - fontWidth*str.str().size();
-            if (i==0 || i==5) w -= width()/50;
-            if (i!=0 && i!=5) h -= textSize/2;
+            if (i==0 || i==10) w -= width()/50;
+            if (i!=0 && i!=10) h -= textSize/2;
             renderText(w, h, QString(str.str().c_str()));
-            value += (max - min)/5;
+            value += (max - min)/10;
         }
 
