Minor adjustments to emoji picker

pull/217/head
Joseph Donofry 5 years ago
parent e20cddd005
commit fa34749279
No known key found for this signature in database
GPG Key ID: E8A1D78EF044B0CB
  1. 1
      resources/qml/TimelineRow.qml
  2. 23
      resources/qml/emoji/EmojiPicker.qml

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

@ -65,7 +65,7 @@ Popup {
cellWidth: 52 cellWidth: 52
cellHeight: 52 cellHeight: 52
boundsBehavior: Flickable.DragOverBounds boundsBehavior: Flickable.StopAtBounds
clip: true clip: true
@ -188,12 +188,19 @@ Popup {
horizontalAlignment: Image.AlignHCenter horizontalAlignment: Image.AlignHCenter
verticalAlignment: Image.AlignVCenter verticalAlignment: Image.AlignVCenter
fillMode: Image.Pad fillMode: Image.Pad
smooth: true
sourceSize.width: 32 sourceSize.width: 32
sourceSize.height: 32 sourceSize.height: 32
source: "image://colorimage/" + model.image + "?" + (hovered ? colors.highlight : colors.buttonText) 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 { background: Rectangle {
anchors.fill: parent anchors.fill: parent
@ -265,12 +272,20 @@ Popup {
anchors.right: parent.right anchors.right: parent.right
horizontalAlignment: Image.AlignHCenter horizontalAlignment: Image.AlignHCenter
verticalAlignment: Image.AlignVCenter verticalAlignment: Image.AlignVCenter
fillMode: Image.Pad
smooth: true
sourceSize.width: 32 sourceSize.width: 32
sourceSize.height: 32 sourceSize.height: 32
fillMode: Image.Pad
smooth: true
source: "image://colorimage/:/icons/icons/ui/search.png?" + (parent.hovered ? colors.highlight : colors.buttonText) 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
}
} }
} }
} }

Loading…
Cancel
Save