Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix layer login popup getting into the top / bottom system OS margins #5799

Merged
merged 2 commits into from
Nov 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion src/core/qfieldappauthrequesthandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -223,5 +223,14 @@ QString QFieldAppAuthRequestHandler::getCredentialTitle( const QString &realm )
if ( uri.database().isEmpty() )
return realm;

return "Please enter credentials for database <b>" + uri.database() + "</b> at host <b>" + uri.host() + ".</b>";
QString title = tr( "Please enter credentials for database" ) + QStringLiteral( " <b>%1</b> " ).arg( uri.database() );
if ( !uri.host().isEmpty() )
{
title += tr( "at host" ) + QStringLiteral( " <b>%1</b> " ).arg( uri.host() );
}
else if ( !uri.service().isEmpty() )
{
title += tr( "at service" ) + QStringLiteral( " <b>%1</b> " ).arg( uri.service() );
}
return title;
}
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
Loading