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
This commit is contained in:
Walter Korman
2002-06-15 01:59:43 +00:00
parent f3590ef1a0
commit 82ce5ad939
+7 -7
View File
@@ -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) {