Index: /fact/tools/Edd/Edd.cc
===================================================================
--- /fact/tools/Edd/Edd.cc	(revision 10908)
+++ /fact/tools/Edd/Edd.cc	(revision 10909)
@@ -166,9 +166,12 @@
   RunHeader *R = RD->RHeader;
 
-  if (R->MagicNum == MAGICNUM_OPEN) {
-    QMessageBox::warning(this, "Edd Message","Magic number in run header indicates that the file has not been closed properly.",QMessageBox::Ok);
-  }
-  if (R->MagicNum == MAGICNUM_ERROR) {
-    QMessageBox::warning(this, "Edd Message","Magic number in run header indicates that an error occurred while writing the file.",QMessageBox::Ok);
+  // Magic number warnings not for online display
+  if (Filename != File.fileName()) {
+    if (R->MagicNum == MAGICNUM_OPEN) {
+      QMessageBox::warning(this, "Edd Message","Magic number in run header indicates that the file has not been closed properly.",QMessageBox::Ok);
+    }
+    if (R->MagicNum == MAGICNUM_ERROR) {
+      QMessageBox::warning(this, "Edd Message","Magic number in run header indicates that an error occurred while writing the file.",QMessageBox::Ok);
+    }
   }
   
