Index: trunk/BNC/src/bncwindow.cpp
===================================================================
--- trunk/BNC/src/bncwindow.cpp	(revision 4303)
+++ trunk/BNC/src/bncwindow.cpp	(revision 4304)
@@ -2545,6 +2545,8 @@
 void bncWindow::slotFinishedPostProcessingPPP() {
   _runningPostProcessingPPP = false;
-  QMessageBox::information(this, "Information",
-                           "Post-Processing Thread Finished");
+  if (_reqcActionComboBox->currentText() != "Analyze") {
+    QMessageBox::information(this, "Information",
+                             "Post-Processing Thread Finished");
+  }
   _actStart->setText("Start");
   enableStartStop();
Index: trunk/BNC/src/rinex/graphwin.cpp
===================================================================
--- trunk/BNC/src/rinex/graphwin.cpp	(revision 4303)
+++ trunk/BNC/src/rinex/graphwin.cpp	(revision 4304)
@@ -54,11 +54,22 @@
 
   int ww = QFontMetrics(font()).width('w');
+  setMinimumSize(80*ww, 40*ww);
 
-  _polarPlot = new t_polarPlot(this);
+  // Multipath Plots
+  // ---------------
+  _plotMP1 = new t_polarPlot(this);
+  _plotMP2 = new t_polarPlot(this);
 
-  // Dialog Layout
-  // -------------
-  _buttonOK = new QPushButton(tr("OK / Save"), this);
+  // Buttons
+  // -------
+  _buttonOK = new QPushButton(tr("OK"), this);
+  _buttonOK->setMaximumWidth(10*ww);
   connect(_buttonOK, SIGNAL(clicked()), this, SLOT(slotOK()));
+
+  // Layout
+  // ------
+  QHBoxLayout* plotLayout = new QHBoxLayout;
+  plotLayout->addWidget(_plotMP1);
+  plotLayout->addWidget(_plotMP2);
 
   QHBoxLayout* buttonLayout = new QHBoxLayout;
@@ -66,7 +77,6 @@
 
   QVBoxLayout* mainLayout = new QVBoxLayout(this);
-  mainLayout->addWidget(_polarPlot);
+  mainLayout->addLayout(plotLayout);
   mainLayout->addLayout(buttonLayout);
-
 }
 
@@ -86,14 +96,4 @@
 ////////////////////////////////////////////////////////////////////////////
 void t_graphWin::closeEvent(QCloseEvent* event) {
-
-  int iRet = QMessageBox::question(this, "Close", "Close?", 
-                                   QMessageBox::Yes, QMessageBox::No,
-                                   QMessageBox::Cancel);
-
-  if      (iRet == QMessageBox::Cancel) {
-    event->ignore();
-    return;
-  }
-
   QDialog::closeEvent(event);
 }
Index: trunk/BNC/src/rinex/graphwin.h
===================================================================
--- trunk/BNC/src/rinex/graphwin.h	(revision 4303)
+++ trunk/BNC/src/rinex/graphwin.h	(revision 4304)
@@ -49,5 +49,6 @@
   private:
    QPushButton* _buttonOK;
-   t_polarPlot* _polarPlot;
+   t_polarPlot* _plotMP1;
+   t_polarPlot* _plotMP2;
 };
 
