Bug? Not possible to control-click comment link when there's a certain error

Sandman

Expert
Licensed User
Longtime User
I have a project that report an error:
B4X:
myClass is declared twice. You should either remove the library reference or the code module.

When investigating this I'd like to jump into the B4A project by clicking the standard links:
B4X:
'B4A ide://run?file=%WINDIR%\System32\cmd.exe&Args=/c&Args=start&Args=..\..\B4A\%PROJECT_NAME%.b4a
'B4i ide://run?file=%WINDIR%\System32\cmd.exe&Args=/c&Args=start&Args=..\..\B4i\%PROJECT_NAME%.b4i
'B4J ide://run?file=%WINDIR%\System32\cmd.exe&Args=/c&Args=start&Args=..\..\B4J\%PROJECT_NAME%.b4j

Nothing happens, and the mouse pointer doesn't even change appearance. Nor does the link light up when hovering them.

The error is somehow related to a b4xlib I've made, and when I disable the b4xlib I instead get other errors:
B4X:
Unknown type: mything<br />Are you missing a library reference?
Unknown type: mything<br />Are you missing a library reference?

It's expected that I get errors when I remove my lib, so there's nothing surprising there. But it's interesting that it's possible to control-click the links with those errors, but not the first one in this post.
 
Top