Index: /trunk/BNC/src/rinex/reqcanalyze.cpp
===================================================================
--- /trunk/BNC/src/rinex/reqcanalyze.cpp	(revision 4307)
+++ /trunk/BNC/src/rinex/reqcanalyze.cpp	(revision 4308)
@@ -84,10 +84,12 @@
 ////////////////////////////////////////////////////////////////////////////
 void t_reqcAnalyze::slotDisplayGraph() {
-  QVector<t_polarPlot*> plots;
-  t_polarPlot* plotMP1 = new t_polarPlot(0); plots << plotMP1;
-  t_polarPlot* plotMP2 = new t_polarPlot(0); plots << plotMP2;
-
-  t_graphWin* graphWin = new t_graphWin(0, plots);
-  graphWin->show();
+  if (((bncApp*) qApp)->mode() == bncApp::interactive) {
+    QVector<t_polarPlot*> plots;
+    t_polarPlot* plotMP1 = new t_polarPlot(0); plots << plotMP1;
+    t_polarPlot* plotMP2 = new t_polarPlot(0); plots << plotMP2;
+    
+    t_graphWin* graphWin = new t_graphWin(0, plots);
+    graphWin->show();
+  }
 }
 
