Search code examples
javaswingcursor

Small dot trailing cursor in Swing application


There is a small dot that keeps trailing the cursor on a Swing application as I move the cursor about over the application frame. What is causing this?


Solution

  • Can it be an empty tooltip? Is the getTooltip() method implemented for the frame (or other component you are hovering over)? If you don't want the tooltip, you should return null, and not an empty String.