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
If you have a paragraph that features part of the selection, and you call getCharacterBoundsOnScreen, then the selection will no longer be displayed on that paragraph until you change the selection extent, or scroll the paragraph in and out of view (which resets the display). Affects 0.7-M5.
I have the fix for this (pull request coming in a sec) but thought I'd record the issue first.
The text was updated successfully, but these errors were encountered:
neilccbrown
added a commit
to neilccbrown/RichTextFX
that referenced
this issue
May 5, 2017
…raph with selection stops the selection being displayed.
The getCharacterBoundsOnScreen method borrows the selectionShape to do the calculation, but it was only taking a reference to the list beforehand, so the saved "copy" was getting wiped out and thus not restoring the selection properly afterwards. Simple fix: take copy of the list, not a reference.
If you have a paragraph that features part of the selection, and you call getCharacterBoundsOnScreen, then the selection will no longer be displayed on that paragraph until you change the selection extent, or scroll the paragraph in and out of view (which resets the display). Affects 0.7-M5.
I have the fix for this (pull request coming in a sec) but thought I'd record the issue first.
The text was updated successfully, but these errors were encountered: