forked from mirror/nheko
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
395 B
17 lines
395 B
import QtQuick 2.10
|
|
import QtQuick.Controls 2.1
|
|
import im.nheko 1.0
|
|
import im.nheko.EmojiModel 1.0
|
|
|
|
import "../"
|
|
|
|
ImageButton {
|
|
property var colors: currentActivePalette
|
|
property var emojiPicker
|
|
property string event_id
|
|
|
|
image: ":/icons/icons/ui/smile.png"
|
|
id: emojiButton
|
|
onClicked: emojiPicker.visible ? emojiPicker.close() : emojiPicker.show(emojiButton, event_id)
|
|
|
|
}
|
|
|