From 82ce5ad9398f72dfedeccba310a1da3960a567fc Mon Sep 17 00:00:00 2001 From: Walter Korman Date: Sat, 15 Jun 2002 01:59:43 +0000 Subject: [PATCH] Commented out debugging-intended highlighting of the last entered node. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1466 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/nodemap/NodeMap.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/java/com/threerings/nodemap/NodeMap.java b/src/java/com/threerings/nodemap/NodeMap.java index 8520a73ae..507385922 100644 --- a/src/java/com/threerings/nodemap/NodeMap.java +++ b/src/java/com/threerings/nodemap/NodeMap.java @@ -1,5 +1,5 @@ // -// $Id: NodeMap.java,v 1.7 2002/06/14 07:56:29 shaper Exp $ +// $Id: NodeMap.java,v 1.8 2002/06/15 01:59:43 shaper Exp $ package com.threerings.nodemap; @@ -120,12 +120,12 @@ public class NodeMap } // highlight the last node entered - if (_lastnode != null) { - g.setColor(Color.red); - int x = _lastnode.getX(), y = _lastnode.getY(); - int wid = _lastnode.getWidth(), hei = _lastnode.getHeight(); - g.drawRect(x, y, wid, hei); - } +// if (_lastnode != null) { +// g.setColor(Color.red); +// int x = _lastnode.getX(), y = _lastnode.getY(); +// int wid = _lastnode.getWidth(), hei = _lastnode.getHeight(); +// g.drawRect(x, y, wid, hei); +// } // draw the tool tip, if any if (_tipper != null) {