Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 8024)
+++ trunk/MagicSoft/Mars/Changelog	(revision 8025)
@@ -50,4 +50,8 @@
    * mcalib/MMcCalibrationCalc.cc, mmc/MMcConfigRunHeader.h:
      - return and use a const-reference to the TArrayF's
+
+   * mimage/MHHillas.cc:
+     - fixed a problem which could cause the change in the DrawOption
+       of the Center-hist to raise a seg-fault.
 
 
Index: trunk/MagicSoft/Mars/mimage/MHHillas.cc
===================================================================
--- trunk/MagicSoft/Mars/mimage/MHHillas.cc	(revision 8024)
+++ trunk/MagicSoft/Mars/mimage/MHHillas.cc	(revision 8025)
@@ -339,5 +339,7 @@
         if (h)
         {
-            h->SetDrawOption("");
+            // This causes crashes in THistPainter::PaintTable
+            // if the z-axis is not kept. No idea why...
+            h->SetDrawOption("z");
             h->SetMarkerColor(kBlack);
         }
