Get blur overlay working

Progress!
android
Loren Burkholder 4 years ago
parent 1918e89a0d
commit 800b6a1626
  1. 6
      resources/qml/MobileMessageContextPopup.qml
  2. 11
      resources/qml/TimelineView.qml

@ -13,11 +13,11 @@ Item {
function show(attachment, messageModel) {
attached = attachment
model = messageModel
state = "shown"
popupRoot.state = "shown"
}
function hide() {
state = "hidden"
popupRoot.state = "hidden"
attached = undefined
model = undefined
}
@ -246,7 +246,7 @@ Item {
FastBlur {
id: overlay
anchors.fill: parent
source: timelineRoot
source: timelineLayout
radius: 50
z: popupBottomBar.z - 1
visible: false

@ -227,7 +227,7 @@ Item {
}
Item {
Layout.fillHeight: true
Layout.fillHeight: tru
}
}
@ -272,5 +272,12 @@ Item {
target: room
}
MobileMessageContextPopup {
id: mobileContextPopup
visible: false
anchors.fill: parent
}
}
}

Loading…
Cancel
Save