Hovering over the issue marker doesn't display its tooltip with the issue description #1099
-
I was following the documentation for GIssueMarkerView and ran into the problem that "builder() does not exist on type GIssueMarker". Fortunately, I found a solution in this discussion thread. However, although the icon is shown now, the tooltip is not displayed when hovering. I have tried both node template examples. For vscode I'm using a dev container since the gasp-server crashes (see issue #1095). For Theia, I'm using the dev container provided in the Here is my the updated
I also updated the
Any suggestion? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @rhumbertgz, I had a quick look at this and it seems like the documentation is outdated here. The hover mouse listener only displays the tooltip if the target element is an instance of configureModelElement(context, DefaultTypes.ISSUE_MARKER, GIssueMarker, GIssueMarkerView); it should work. We will update the documentation accordingly. Sorry fore the inconveniences. |
Beta Was this translation helpful? Give feedback.
Hi @rhumbertgz,
I had a quick look at this and it seems like the documentation is outdated here. The hover mouse listener only displays the tooltip if the target element is an instance of
GIssueMarker
. So if you change yourconfigureModelElement
call in thetaskListDiagramModule
toit should work. We will update the documentation accordingly. Sorry fore the inconveniences.