Minor adjustments to emoji picker

This commit is contained in:
Joseph Donofry 2020-06-09 20:47:21 -04:00
parent e20cddd005
commit fa34749279
No known key found for this signature in database
GPG Key ID: E8A1D78EF044B0CB
3 changed files with 23 additions and 9 deletions

View File

@ -71,7 +71,7 @@ MouseArea {
pixelDelta = wheel.pixelDelta.y
}
pixelDelta = Math.round(pixelDelta)
pixelDelta = Math.round(pixelDelta)
if (!pixelDelta) {
return flickableItem.contentY;

View File

@ -95,7 +95,6 @@ MouseArea {
emojiPicker: emojiPopup
room_id: model.roomId
event_id: model.id
// onClicked: chat.model.reactAction(model.id)
}
ImageButton {
visible: timelineSettings.buttons

View File

@ -65,7 +65,7 @@ Popup {
cellWidth: 52
cellHeight: 52
boundsBehavior: Flickable.DragOverBounds
boundsBehavior: Flickable.StopAtBounds
clip: true
@ -147,9 +147,9 @@ Popup {
onVisibleChanged: if (visible) forceActiveFocus()
}
ScrollBar.vertical: ScrollBar {
id: emojiScroll
}
ScrollBar.vertical: ScrollBar {
id: emojiScroll
}
}
// Separator
@ -188,12 +188,19 @@ Popup {
horizontalAlignment: Image.AlignHCenter
verticalAlignment: Image.AlignVCenter
fillMode: Image.Pad
smooth: true
sourceSize.width: 32
sourceSize.height: 32
source: "image://colorimage/" + model.image + "?" + (hovered ? colors.highlight : colors.buttonText)
}
MouseArea
{
id: mouseArea
anchors.fill: parent
onPressed: mouse.accepted = false
cursorShape: Qt.PointingHandCursor
}
background: Rectangle {
anchors.fill: parent
@ -265,12 +272,20 @@ Popup {
anchors.right: parent.right
horizontalAlignment: Image.AlignHCenter
verticalAlignment: Image.AlignVCenter
fillMode: Image.Pad
smooth: true
sourceSize.width: 32
sourceSize.height: 32
fillMode: Image.Pad
smooth: true
source: "image://colorimage/:/icons/icons/ui/search.png?" + (parent.hovered ? colors.highlight : colors.buttonText)
}
MouseArea
{
id: mouseArea
anchors.fill: parent
onPressed: mouse.accepted = false
cursorShape: Qt.PointingHandCursor
}
}
}
}