-
Bug
-
Resolution: Fixed
-
P2
-
1.3.0
-
beta
-
x86, sparc
-
solaris_2.6, windows_nt
-
Verified
This bug seemed to start on 1.3-H build. I tried the following program on G build and it works fine, but on H and subsequent builds the tool tip is just a flicker where you can see it for a very brief moment and then it disappears.
Here is a simple program to re-create it:
--------------------------------- Cut Here -----------------------------------
import javax.swing.*;
public class TestToolTip extends JFrame {
JPanel testPanel;
JButton button;
public static void main(String[] args) {
new TestToolTip();
}
public TestToolTip() {
testPanel = new JPanel();
button = new JButton("Hello");
button.setToolTipText("Hello There");
testPanel.add(button);
setContentPane(testPanel);
setSize(300, 300);
setVisible(true);
}
}
---------------------------------- Cut Here -----------------------------------
Note: Be sure to use Kestrel 1.3-H build or up.
-- Edmund Lou
JFC SQE
Here is a simple program to re-create it:
--------------------------------- Cut Here -----------------------------------
import javax.swing.*;
public class TestToolTip extends JFrame {
JPanel testPanel;
JButton button;
public static void main(String[] args) {
new TestToolTip();
}
public TestToolTip() {
testPanel = new JPanel();
button = new JButton("Hello");
button.setToolTipText("Hello There");
testPanel.add(button);
setContentPane(testPanel);
setSize(300, 300);
setVisible(true);
}
}
---------------------------------- Cut Here -----------------------------------
Note: Be sure to use Kestrel 1.3-H build or up.
-- Edmund Lou
JFC SQE
- duplicates
-
JDK-4249124 ToolTips not displaying in SwingSet Kestrel I build
-
- Closed
-
-
JDK-4249905 setToolTipText rendering failure.
-
- Closed
-