-
Bug
-
Resolution: Fixed
-
P4
-
1.4.0
-
None
-
01
-
x86
-
solaris_2
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2052199 | 1.4.1 | Harsha Godugu | P4 | Closed | Fixed | hopper |
When tool tip location is very close to the screen edges, then it shows only partially. Tool tip does not get adjusted it-self to show its full length of
text. This happens on windows with Merlin.
This is similar to bug# 4425878 which involves popup menu.
Test case:
public class MyTestW extends Object {
public static void main (String args[]) {
javax.swing.JFrame f = new javax.swing.JFrame();
javax.swing.JButton b = new javax.swing.JButton("whooo");
b.setToolTipText("Somthing really long 1234567890 1234567890 1234567890
1234567890 1234567890 1234567890 1234567890 1234567890");
f.getContentPane().add(b);
f.pack();
//f.setDefaultCloseOperation(javax.swing.JFrame.EXIT_ON_CLOSE);
f.show();
}
}
text. This happens on windows with Merlin.
This is similar to bug# 4425878 which involves popup menu.
Test case:
public class MyTestW extends Object {
public static void main (String args[]) {
javax.swing.JFrame f = new javax.swing.JFrame();
javax.swing.JButton b = new javax.swing.JButton("whooo");
b.setToolTipText("Somthing really long 1234567890 1234567890 1234567890
1234567890 1234567890 1234567890 1234567890 1234567890");
f.getContentPane().add(b);
f.pack();
//f.setDefaultCloseOperation(javax.swing.JFrame.EXIT_ON_CLOSE);
f.show();
}
}
- backported by
-
JDK-2052199 JToolTip is shown partially when placed very close to screen boundaries
- Closed
- relates to
-
JDK-5078214 ToolTip is shown partially when the application is near the bottom of screen.
- Closed