Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4402462

Heavyweight tooltip flickers repeatedly if it pops up under cursor.

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P2 P2
    • None
    • 1.3.0
    • client-libs

      When a heavyweight tooltip pops up under the cursor, the tooltip flickers repeatedly. No problem with lightweight tooltips.

      The following code will demonstrate. move the mouse into the bottom part of the frame that appears so that the tooltip will popup underneath it.

      import javax.swing.*;

      public class ToolTipFlicker {

          public static void main(String [] args) {
      JFrame frame = new JFrame();
      frame.setBounds(20, 20, 100, 100);
      JPanel toolTipPanel = new JPanel();
      // force a heavyweight tooltip using long text
      toolTipPanel.setToolTipText("This test text is wider than the window");
      frame.getContentPane().add(toolTipPanel, java.awt.BorderLayout.CENTER);
      frame.show();
          }
      }

            svioletsunw Scott Violet (Inactive)
            duke J. Duke
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: