-
Notifications
You must be signed in to change notification settings - Fork 274
Description
When using a tooltip with an input_box, the popup will steal the focus from the input box, making it difficult to enter new values.
Example from my interface:

Here, when the user hovers the input box, an explanatory popup appears to explain exactly what changing this value will do. Usually, however, the user would click the box beforehand to type a new value (with the mouse still hovering it), in which case the popup steals the focus when it appears. The user will then modify the text inside the popup instead of changing the value in the input box.
Another issue I noticed with these popups is that, for longer texts such as the one shown here, the popup itself is placed incorrectly the first time it appears. Compare the following first-time popup with the previous one:

Note that this only happens the first time. Every time it appears afterwards, it is correctly placed on top as in the first picture. This also happens with check_box, so perhaps it is a general issue with tooltips.