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
Press Enter
=> Image is shown twice, once in the upper (new) paragraph and once in the lower paragraph.
When using an older variant of the LinkedImageOps, it works well.
The text was updated successfully, but these errors were encountered:
Modifying realSubSequence in NodeSegmentOpsBase so that it creates an empty segment when the sub sequence length is 0 fixes it:
@Override
public SEG realSubSequence(SEG seg, int start, int end) {
if (start == end) {
return createEmpty();
}
return seg;
}
Needs some additional testing before submitting a PR, but I think this should be a safe assumption in any case (and thus should probably be moved to subSequence in SegmentOpsBase)
=> Image is shown twice, once in the upper (new) paragraph and once in the lower paragraph.
When using an older variant of the LinkedImageOps, it works well.
The text was updated successfully, but these errors were encountered: