RFR: JDK-8296387: [Tooltip, CSS] -fx-show-delay is only applied to the first tooltip that is shown before it is displayed [v2]
Marius Hanl
mhanl at openjdk.org
Sat Mar 9 12:23:01 UTC 2024
On Fri, 8 Mar 2024 22:59:42 GMT, Andy Goryachev <angorya at openjdk.org> wrote:
> This is another, unrelated issue: If I specify a number instead of duration like `-fx-show-delay: 1;` we'll get an exception every time the tooltip is about to be shown.
This is because the CSS implementation thinks it is a PX value and therefore parse it wrong. You can check the CssParser to see why this happens. Fix might be simple, but the code in the parser is very error prone for this kind of stuff.
-------------
PR Comment: https://git.openjdk.org/jfx/pull/1394#issuecomment-1986842087
More information about the openjfx-dev
mailing list