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
In our app the user can select one of several "notes". Each one of them stores its own "Document". When the document gets "loaded" into the RichTextArea the control requests the focus. It should definitely not do that.
The text was updated successfully, but these errors were encountered:
And another one is inside the refreshTextFlow() method:
// TODO Need more optimal way of rendering text fragments.// For now rebuilding the whole text flowprivatevoidrefreshTextFlow() {
objectsCacheEvictionTimer.pause();
try {
nonTextNodes.set(0);
viewModel.resetCharacterIterator();
lastParagraph = paragraphSortedList.get(paragraphSortedList.size() - 1);
// this ensures changes in decoration are applied:paragraphListView.updateLayout();
if (nonTextNodesCount != nonTextNodes.get()) {
// when number of images changes, caretrequestLayout();
nonTextNodesCount = nonTextNodes.get();
}
getSkinnable().requestFocus();
} finally {
objectsCacheEvictionTimer.start();
}
}
In our app the user can select one of several "notes". Each one of them stores its own "Document". When the document gets "loaded" into the RichTextArea the control requests the focus. It should definitely not do that.
The text was updated successfully, but these errors were encountered: