Git commit 683211b40efd77c8d188c8dc30f5948460184738 by Martin Klapetek. Committed on 14/05/2016 at 18:33. Pushed by mklapetek into branch 'master'. [app] Add a button to open the emojis popup M +11 -0 app/package/contents/ui/ConversationPage.qml http://commits.kde.org/spacebar/683211b40efd77c8d188c8dc30f5948460184738 diff --git a/app/package/contents/ui/ConversationPage.qml b/app/package/con= tents/ui/ConversationPage.qml index cb6be7e..6ca5291 100644 --- a/app/package/contents/ui/ConversationPage.qml +++ b/app/package/contents/ui/ConversationPage.qml @@ -219,6 +219,17 @@ Kirigami.Page { } = Button { + id: emojisButton + + Layout.maximumWidth: implicitWidth / 2 + + text: ":)" + + onClicked: { + emojisRect.open(); + } + } + Button { id: sendButton enabled: conversation !=3D=3D null