We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4b32a6 commit 807dd6cCopy full SHA for 807dd6c
ios/EnrichedTextInputView.mm
@@ -1081,8 +1081,11 @@ - (void)anyTextMayHaveBeenModified {
1081
[h3Style handleImproperHeadings];
1082
}
1083
1084
- // additionally, manage selection based changes
1085
- [self manageSelectionBasedChanges];
+ // manage mention editing also here
+ MentionStyle *mentionStyle = stylesDict[@([MentionStyle getStyleType])];
1086
+ if(mentionStyle != nullptr) {
1087
+ [mentionStyle manageMentionEditing];
1088
+ }
1089
1090
// placholder management
1091
if(!_placeholderLabel.hidden && textView.textStorage.string.length > 0) {
0 commit comments