From 1a2eb84ace51fa0195ac89934857f35fa69e9ded Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Tinkl?= Date: Wed, 13 Jul 2022 11:17:18 +0200 Subject: [PATCH] fix(MyProfileSettingsView): fingerprint entry should fill the full width Fixes #6361 --- .../AppLayouts/Profile/views/profile/MyProfileSettingsView.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ui/app/AppLayouts/Profile/views/profile/MyProfileSettingsView.qml b/ui/app/AppLayouts/Profile/views/profile/MyProfileSettingsView.qml index edbfd70123..1366189472 100644 --- a/ui/app/AppLayouts/Profile/views/profile/MyProfileSettingsView.qml +++ b/ui/app/AppLayouts/Profile/views/profile/MyProfileSettingsView.qml @@ -82,10 +82,13 @@ ColumnLayout { StatusListItem { Layout.fillWidth: true visible: Qt.platform.os == "osx" + leftPadding: 0 + rightPadding: 0 title: qsTr("Biometric login and transaction authentication") icon.name: "touch-id" components: [ StatusSwitch { id: biometricsSwitch + horizontalPadding: 0 readonly property bool currentStoredValue: localAccountSettings.storeToKeychainValue === Constants.storeToKeychainValueStore checked: currentStoredValue } ]