mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
Fix emoji picker
This commit is contained in:
parent
bda88a0379
commit
fd87dc615c
1 changed files with 6 additions and 5 deletions
|
@ -257,6 +257,10 @@ Menu {
|
||||||
Layout.preferredWidth: 36
|
Layout.preferredWidth: 36
|
||||||
Layout.preferredHeight: 36
|
Layout.preferredHeight: 36
|
||||||
hoverEnabled: true
|
hoverEnabled: true
|
||||||
|
leftPadding: 2
|
||||||
|
rightPadding: 2
|
||||||
|
topPadding: 2
|
||||||
|
bottomPadding: 2
|
||||||
ToolTip.text: {
|
ToolTip.text: {
|
||||||
switch (model.category) {
|
switch (model.category) {
|
||||||
case Emoji.Category.People:
|
case Emoji.Category.People:
|
||||||
|
@ -294,13 +298,10 @@ Menu {
|
||||||
contentItem: Image {
|
contentItem: Image {
|
||||||
horizontalAlignment: Image.AlignHCenter
|
horizontalAlignment: Image.AlignHCenter
|
||||||
verticalAlignment: Image.AlignVCenter
|
verticalAlignment: Image.AlignVCenter
|
||||||
fillMode: Image.Pad
|
|
||||||
height: 32
|
|
||||||
width: 32
|
|
||||||
smooth: true
|
smooth: true
|
||||||
mipmap: true
|
mipmap: true
|
||||||
sourceSize.width: 32 * Screen.devicePixelRatio
|
sourceSize.width: width
|
||||||
sourceSize.height: 32 * Screen.devicePixelRatio
|
sourceSize.height: height
|
||||||
source: "image://colorimage/" + model.image + "?" + (hovered ? Nheko.colors.highlight : Nheko.colors.buttonText)
|
source: "image://colorimage/" + model.image + "?" + (hovered ? Nheko.colors.highlight : Nheko.colors.buttonText)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue