summaryrefslogtreecommitdiff
path: root/src/graphyx/gui/InfoPanel.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphyx/gui/InfoPanel.scala')
-rw-r--r--src/graphyx/gui/InfoPanel.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graphyx/gui/InfoPanel.scala b/src/graphyx/gui/InfoPanel.scala
index 484f3d7..6e58ba3 100644
--- a/src/graphyx/gui/InfoPanel.scala
+++ b/src/graphyx/gui/InfoPanel.scala
@@ -23,6 +23,6 @@ class InfoPanel(container: Container) extends BoxPanel(Orientation.Vertical){
out.text += "Warning: some bodies passed the speed of light! Simulation may be highly incorrect.\n"
}
else out.foreground = java.awt.Color.black
- for (r <- container.scene.world.monitorResults) out.text += r + "\n"
+ for (r <- container.scene.world.monitorFlatResults) out.text += "b" + r._1 + " " + r._2 + ": " + r._3 + "\n"
}
}