Force the focus on the text field after adding an emoji

Fix #71
This commit is contained in:
Carl Schwan
2020-11-24 23:40:02 +01:00
parent ae6eae5204
commit f4da552674

View File

@@ -46,7 +46,10 @@ ToolBar {
textArea: inputField
emojiModel: EmojiModel { id: emojiModel }
onChoosen: textArea.insert(textArea.cursorPosition, emoji)
onChoosen: {
textArea.insert(textArea.cursorPosition, emoji);
textArea.forceActiveFocus();
}
}
RowLayout {