SU2 Beta SHOW_TOOLTIP stopped working

Version: 1.4.7.0

Frequency: Consistently

Severity: Blocking

Repro steps:

Typing this in the Coherent GT Debugger console:

Coherent.trigger("SHOW_TOOLTIP", 0, "TEST",450, 50, 1000);

Will show a blank tooltip, in the right position, but with no text.

Coherent.trigger("HIDE_TOOLTIP", 0);

Won’t hide the tooltip either, as it used to until the previous version.

1 Like

Hello @Umberto67

I just checked on 1.4.7.0 and I also have the issue with the HIDE_TOOLTIP not working.
However, the tooltip text is visible for me (tested from the minimap page Coherent debug context)

Regards,
Sylvain

Ok, I tried it from the minimap page, and it worked. Although a subsequent call with a different text doesn’t update it and, since the HIDE_TOOLTIP call doesn’t work, the tooltip then stays on screen forever.

So, the real question is, why it works from a certain context and not from another one ?

It’s a single Coherent call, is the text possibly inheriting some visibility property from something else, meaning we need to set it explicitly to make it work in a different context ?

Wanted to report the following change in 1.4.9.0:

SHOW_TOOLTIP, which previously displayed an empty text when called from the context of my Toolbar menu app (but worked from the Minimap context), now show the text as expected.

HIDE_TOOLTIP still doesn’t work.

Hi,
Hide works, but for Id you need a string

Coherent.trigger("SHOW_TOOLTIP", "myTooltip", "This is a tooltip test", 100, 200);

Coherent.trigger("HIDE_TOOLTIP", "myTooltip");

1 Like

Thank you very much, it works!