Skip to content

Commit

Permalink
Fix layer login popup getting into the top / bottom system OS margins
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Nov 9, 2024
1 parent 7892761 commit c449dbb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/qml/qgismobileapp.qml
Original file line number Diff line number Diff line change
Expand Up @@ -3620,10 +3620,10 @@ ApplicationWindow {
Popup {
id: loginDialogPopup
parent: Overlay.overlay
x: 24
y: 24
width: parent.width - 48
height: parent.height - 48
x: Theme.popupScreenEdgeMargin
y: Theme.popupScreenEdgeMargin
width: parent.width - Theme.popupScreenEdgeMargin * 2
height: parent.height - Theme.popupScreenEdgeMargin * 2
padding: 0
modal: true
closePolicy: Popup.CloseOnEscape
Expand Down

0 comments on commit c449dbb

Please sign in to comment.