Skip to content

Commit

Permalink
next steps
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterPetrik committed Feb 28, 2024
1 parent 67653d4 commit 7f6affa
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/qml/map/MapWrapper.qml
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ Item {
width: mapCanvas.width
height: visible ? 7 * __dp : 0
anchors.top: canvasRoot.top
visible: true // mapCanvas.isRendering && root.state !== "inactive"
visible: mapCanvas.isRendering && root.state !== "inactive"
}

MMMapButton {
Expand Down
15 changes: 11 additions & 4 deletions app/qml/map/components/MMMapBlurLabel.qml
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,30 @@ import "."

MMBlurBox {
id: root
height: __style.row40

property alias text: text.text
required property string text

function show() {
root.visible = true
}

function hide() {
root.visible = false
}

height: __style.row40
timerInterval: 10000
fadeOutDuration: 1000

// Text
Text {
id: text

height: parent.height
width: parent.width - 2 * __style.pageMargins
anchors.verticalCenter: parent.verticalCenter
anchors.horizontalCenter: parent.horizontalCenter

color: __style.forestColor
text: root.text
font: __style.t3
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
Expand Down

1 comment on commit 7f6affa

@inputapp-bot
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

iOS - version 24.02.534211 just submitted!

Please sign in to comment.