tuned signature;
authorwenzelm
Wed, 28 Jan 2015 19:18:08 +0100
changeset 59460 3a357fef24e8
parent 59459 985fc55e9f27
child 59461 6eabc60641a6
tuned signature;
src/Tools/Graphview/graph_file.scala
src/Tools/Graphview/graph_panel.scala
src/Tools/Graphview/graphview.scala
--- a/src/Tools/Graphview/graph_file.scala	Wed Jan 28 19:15:13 2015 +0100
+++ b/src/Tools/Graphview/graph_file.scala	Wed Jan 28 19:18:08 2015 +0100
@@ -26,7 +26,7 @@
       gfx.setColor(Color.WHITE)
       gfx.fillRect(0, 0, w, h)
       gfx.translate(- box.x, - box.y)
-      graphview.paint_all_visible(gfx)
+      graphview.paint(gfx)
     }
 
     val name = file.getName
--- a/src/Tools/Graphview/graph_panel.scala	Wed Jan 28 19:15:13 2015 +0100
+++ b/src/Tools/Graphview/graph_panel.scala	Wed Jan 28 19:18:08 2015 +0100
@@ -40,7 +40,7 @@
       gfx.fillRect(0, 0, peer.getWidth, peer.getHeight)
 
       gfx.transform(Transform())
-      graphview.paint_all_visible(gfx)
+      graphview.paint(gfx)
     }
   }
 
--- a/src/Tools/Graphview/graphview.scala	Wed Jan 28 19:15:13 2015 +0100
+++ b/src/Tools/Graphview/graphview.scala	Wed Jan 28 19:18:08 2015 +0100
@@ -135,7 +135,7 @@
     }
   }
 
-  def paint_all_visible(gfx: Graphics2D)
+  def paint(gfx: Graphics2D)
   {
     gfx.setRenderingHints(Metrics.rendering_hints)