From 820b63d493c89d33536807b09762ef8a5551207e Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Sun, 22 Nov 2020 14:59:10 +0100 Subject: [PATCH] Improve emoji selector --- imports/NeoChat/Component/ChatTextInput.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/imports/NeoChat/Component/ChatTextInput.qml b/imports/NeoChat/Component/ChatTextInput.qml index 8c21e07c5..9a5838730 100644 --- a/imports/NeoChat/Component/ChatTextInput.qml +++ b/imports/NeoChat/Component/ChatTextInput.qml @@ -126,6 +126,7 @@ ToolBar { visible: isEmoji text: autoCompleteText font.family: "Emoji" + font.pointSize: 20 verticalAlignment: Text.AlignVCenter horizontalAlignment: Text.AlignHCenter } @@ -135,6 +136,7 @@ ToolBar { Layout.preferredHeight: Kirigami.Units.gridUnit source: modelData.avatarMediaId ? "image://mxc/" + modelData.avatarMediaId : "" color: modelData.color ? Qt.darker(modelData.color, 1.1) : null + visible: !isEmoji } Label { Layout.fillHeight: true