Enlarge emoji in composer (#7602)

This commit is contained in:
Robin
2022-01-24 12:53:05 +00:00
committed by GitHub
parent b5d11336f7
commit 6806c2cdca
12 changed files with 128 additions and 42 deletions
+1 -1
View File
@@ -111,7 +111,7 @@ export default class AutocompleteWrapperModel {
return [(this.partCreator as CommandPartCreator).command(text)];
default:
// used for emoji and other plain text completion replacement
return [this.partCreator.plain(text)];
return this.partCreator.plainWithEmoji(text);
}
}
}