diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-01-12 07:34:17 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-01-12 07:34:17 +0100 |
commit | 2345faf630e5fd17b46f56672cd0ac1940f698d8 (patch) | |
tree | 5f9c050def38cbb2139a3ab90e87fd001982489c /resources/qml | |
parent | Update changelog for 0.11.0 (diff) | |
download | nheko-2345faf630e5fd17b46f56672cd0ac1940f698d8.tar.xz |
Try to fix binding loop in emoji picker
Diffstat (limited to 'resources/qml')
-rw-r--r-- | resources/qml/emoji/EmojiPicker.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/emoji/EmojiPicker.qml b/resources/qml/emoji/EmojiPicker.qml index fee746f6..540a4b9a 100644 --- a/resources/qml/emoji/EmojiPicker.qml +++ b/resources/qml/emoji/EmojiPicker.qml @@ -301,8 +301,8 @@ Menu { verticalAlignment: Image.AlignVCenter smooth: true mipmap: true - sourceSize.width: width - sourceSize.height: height + sourceSize.width: 32 + sourceSize.height: 32 source: "image://colorimage/" + model.image + "?" + (hovered ? Nheko.colors.highlight : Nheko.colors.buttonText) } |