Skip to content

Commit

Permalink
Fix button alignment in basic auth screen
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjv authored and TheOneRing committed Oct 16, 2024
1 parent 1717fdc commit 91d40e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/qml/credentials/BasicAuthCredentials.qml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Credentials {
Button {
id: loginButton
Layout.alignment: Qt.AlignHCenter
Layout.preferredWidth: passwordField.width
Layout.preferredWidth: userNameField.implicitWidth
// don't show this button in the wizard
visible: credentials.isRefresh
text: qsTr("Log in")
Expand All @@ -87,7 +87,7 @@ Credentials {

Loader {
Layout.alignment: Qt.AlignHCenter
Layout.preferredWidth: passwordField.width
Layout.preferredWidth: passwordField.implicitWidth
sourceComponent: logOutButton
}

Expand Down

0 comments on commit 91d40e2

Please sign in to comment.