fix(MyProfileSettingsView): fingerprint entry should fill the full width

Fixes #6361
This commit is contained in:
Lukáš Tinkl 2022-07-13 11:17:18 +02:00 committed by Lukáš Tinkl
parent 47897f431f
commit 1a2eb84ace
1 changed files with 3 additions and 0 deletions

View File

@ -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
} ]