mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-25 15:39:55 +00:00
LibGUI: TextEditor now opts in to emoji input by default :^)
This commit is contained in:
parent
4173905198
commit
604fb278c1
Notes:
sideshowbarker
2024-07-19 06:33:01 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/604fb278c14
1 changed files with 1 additions and 0 deletions
|
@ -53,6 +53,7 @@ namespace GUI {
|
|||
TextEditor::TextEditor(Type type)
|
||||
: m_type(type)
|
||||
{
|
||||
set_accepts_emoji_input(true);
|
||||
set_background_role(ColorRole::Base);
|
||||
set_foreground_role(ColorRole::BaseText);
|
||||
set_document(TextDocument::create());
|
||||
|
|
Loading…
Reference in a new issue