diff options
Diffstat (limited to 'components/controls/SwitchRow.qml')
| -rw-r--r-- | components/controls/SwitchRow.qml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/components/controls/SwitchRow.qml b/components/controls/SwitchRow.qml index 7fa3e1b..6dda3f0 100644 --- a/components/controls/SwitchRow.qml +++ b/components/controls/SwitchRow.qml @@ -12,7 +12,7 @@ StyledRect { required property string label required property bool checked property bool enabled: true - property var onToggled: function(checked) {} + property var onToggled: function (checked) {} Layout.fillWidth: true implicitHeight: row.implicitHeight + Appearance.padding.large * 2 @@ -46,4 +46,3 @@ StyledRect { } } } - |