Skip to content

Commit 15e06b6

Browse files
committedJan 17, 2025
8345618: javax/swing/text/Caret/8163124/CaretFloatingPointAPITest.java leaves Caret is not complete
Reviewed-by: azvegint
1 parent 3ab521e commit 15e06b6

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed
 

‎test/jdk/javax/swing/text/Caret/8163124/CaretFloatingPointAPITest.java

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -222,11 +222,11 @@ public void paint(Graphics g) {
222222

223223
Graphics2D g2d = (Graphics2D) g;
224224
g2d.draw(new Line2D.Float(c, cy, c, cy + ch));
225-
g2d.draw(new Line2D.Float(cx, cy, cx + cw, cy));
226-
g2d.draw(new Line2D.Float(cx, cy + ch, cx + cw, cy + ch));
227225
}
228226

229227
void repaint(Rectangle r) {
228+
r.width += 1;
229+
r.height += 1;
230230
component.repaint(r);
231231
}
232232

@@ -424,6 +424,8 @@ protected void adjustVisibility(Rectangle nloc) {
424424

425425
protected synchronized void damage(Rectangle r) {
426426
if (r != null && component != null) {
427+
r.width += 1;
428+
r.height += 1;
427429
component.repaint(r);
428430
}
429431
}

0 commit comments

Comments
 (0)
Please sign in to comment.