diff --git a/slsDetectorGui/src/qTabPlot.cpp b/slsDetectorGui/src/qTabPlot.cpp
index b072f84a9..2498be00b 100644
--- a/slsDetectorGui/src/qTabPlot.cpp
+++ b/slsDetectorGui/src/qTabPlot.cpp
@@ -585,7 +585,10 @@ void qTabPlot::SetFrequency(){
acqPeriodMS = (myDet->setTimer(slsDetectorDefs::ACQUISITION_TIME,-1)*(1E-6));
if(acqPeriodMS==0){
- qDefs::Message(qDefs::WARNING,"Interval between Plots:
"
+ //to reduce the warnings displayed
+ if((comboFrequency->currentIndex() == 0) && (spinTimeGap->value() == minPlotTimer));
+ else
+ qDefs::Message(qDefs::WARNING,"Interval between Plots:
"
"Every Nth Image: Period betwen Frames and Exposure Time cannot both be 0 ms.
"
"Resetting to minimum plotting time interval","qTabPlot::SetFrequency");
comboFrequency->setCurrentIndex(0);