diff --git a/CEP/Calibration/BBSControl/scripts/parmdbplot.py b/CEP/Calibration/BBSControl/scripts/parmdbplot.py
index f80b9e77c4cd4f1417bbbe13ba8f1ba1684a783f..fec495709ca3998796a095468a72c2fa5e26cc66 100755
--- a/CEP/Calibration/BBSControl/scripts/parmdbplot.py
+++ b/CEP/Calibration/BBSControl/scripts/parmdbplot.py
@@ -552,7 +552,9 @@ class PlotWindow(QFrame):
         hbox2.addWidget(self.referenceLabel)
         hbox2.addWidget(self.referenceSelector)
         # For now, phase sum only works when only one parameter is shown
-        if len(self.selected_parms)==1:
+        if len(self.selected_parms)==1 and \
+           (self.calType!="CommonRotationAngle" and 
+            self.calType!="RotationAngle"):
             hbox2.addWidget(self.sumLabel)
             hbox2.addWidget(self.sumSelector)
         hbox2.addStretch(1)
@@ -566,8 +568,7 @@ class PlotWindow(QFrame):
         layout.addLayout(hbox)
         
         # RotationAngles do not have phase sum 
-        if self.calType!="CommonRotationAngle" and self.calType!="RotationAngle":
-            layout.addLayout(hbox2)
+        layout.addLayout(hbox2)
         layout.addLayout(hbox3)
         layout.addWidget(self.toolbar)
         self.setLayout(layout)