[Bojangles-cvs] cvs: bojangles /widgets HighlightBorder.java
Status: Alpha
Brought to you by:
nehresma
|
From: nehresma <boj...@li...> - 2002-08-22 02:44:41
|
nehresma Wed Aug 21 19:44:40 2002 EDT
Modified files:
/bojangles/widgets HighlightBorder.java
Log:
commented the top right and bottom left grabbers back out. if/when we
get the mouse move bug stuff worked out for those then we can uncomment them,
but for now i think they are best left out as to not cause confusion.
Index: bojangles/widgets/HighlightBorder.java
diff -u bojangles/widgets/HighlightBorder.java:1.2 bojangles/widgets/HighlightBorder.java:1.3
--- bojangles/widgets/HighlightBorder.java:1.2 Tue Aug 20 15:37:15 2002
+++ bojangles/widgets/HighlightBorder.java Wed Aug 21 19:44:40 2002
@@ -30,9 +30,9 @@
// bottom right
g.fillRect(w-borderDepth,h-borderDepth,borderDepth, borderDepth);
// bottom left
- g.fillRect(0,h-borderDepth,borderDepth, borderDepth);
+ //g.fillRect(0,h-borderDepth,borderDepth, borderDepth);
// top right
- g.fillRect(w-borderDepth,0,borderDepth, borderDepth);
+ //g.fillRect(w-borderDepth,0,borderDepth, borderDepth);
}
public Insets getBorderInsets(Component c) {
|