Skip to content

Commit

Permalink
Fix textfield layout on basic auth credentials page
Browse files Browse the repository at this point in the history
Fixes: #11913
  • Loading branch information
erikjv committed Oct 2, 2024
1 parent a9dc932 commit f561147
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/gui/qml/credentials/BasicAuthCredentials.qml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ Credentials {
Keys.onBacktabPressed: {
widget.parentFocusWidget.focusPrevious();
}

anchors.left: parent.left
anchors.right: parent.right
}

Label {
Expand All @@ -67,6 +70,9 @@ Credentials {
event.accepted = true;
}
}

anchors.left: parent.left
anchors.right: parent.right
}

Item {
Expand Down

0 comments on commit f561147

Please sign in to comment.