TF-797 [Web] Fix cursor position should display style of the current position in composer

This commit is contained in:
dab246
2022-08-09 11:45:23 +07:00
committed by Dat H. Pham
parent 900af08921
commit cadf33f4fc
@@ -48,29 +48,25 @@ class RichTextWebController extends BaseRichTextController {
void onEditorSettingsChange(EditorSettings settings) async {
log('RichTextWebController::onEditorSettingsChange():');
listTextStyleApply.clear();
if (settings.isBold) {
listTextStyleApply.add(RichTextStyleType.bold);
} else {
listTextStyleApply.remove(RichTextStyleType.bold);
}
if (settings.isItalic) {
listTextStyleApply.add(RichTextStyleType.italic);
} else {
listTextStyleApply.remove(RichTextStyleType.italic);
}
if (settings.isUnderline) {
listTextStyleApply.add(RichTextStyleType.underline);
} else {
listTextStyleApply.remove(RichTextStyleType.underline);
}
if (settings.isStrikethrough) {
listTextStyleApply.add(RichTextStyleType.strikeThrough);
} else {
listTextStyleApply.remove(RichTextStyleType.strikeThrough);
}
log('RichTextWebController::onEditorSettingsChange(): $listTextStyleApply');
}
void applyRichTextStyle(BuildContext context, RichTextStyleType textStyleType) {