You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clicking on the cursor does not produce any effect because the event is rejected.
Try this:
click on a word,
then double click without changing the mouse position to be exactly over the visual cursor.
Normally, the whole word should be selected and it is not.
The visual cursor element is an instance of BlElement subclass: #AlbCursorElement.
It shows the cursor when editing..
Its model is managed by a AlbTextEditorCursor (it gives the position)
When a cursor position changes then, the actual AlbCursolElement is removed from its parent and a new AlbCursorElement is created (by a AlbCursorStencil) and then added as a child of the AlbTextElement under editing.
The bogue is as follow:
Sometimes a cursor element can have nil as its parent whereas it is drawn, this means that it is in the children array of an AlbTextElement.
Thus, the cursor element state is incorrect because a child BlElement must always point to its parent through the value of it parent instance variable.
No description provided.
The text was updated successfully, but these errors were encountered: