Praytic / youtd2

Classic community-driven session-based Tower Defense game with RPG elements.
https://youtd2.com/
MIT License
97 stars 17 forks source link

Tooltip can cover up autocast button #325

Closed Kvel2D closed 11 months ago

Kvel2D commented 11 months ago

2023-12-14 17_34_23-Window When that happens the tooltip starts to flicker because of the loop of:

  1. Autocast button emits mouse_entered signal
  2. Tooltip show
  3. Tooltip covers up autocast button, so autocast button emits mouse_exited signal
  4. Tooltip hide
  5. Go to step 1
Kvel2D commented 11 months ago

Solved it by positioning tooltip next to the button instead of at a predetermined position. This is only for autocasts, other tooltip sources work as before. 2023-12-14 17_50_51-Window