Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion shell/plugins/lock/LockView.qml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ Item {
property bool syncingPasswordText: false

readonly property string placeholderText: "Enter Password"
readonly property int fieldWidth: 381
// Clamped so the field cannot outgrow a narrow screen.
readonly property int fieldWidth: root.width > 0 ? Math.min(381, root.width - Style.gapsOut * 2) : 381
readonly property int fieldHeight: 67
readonly property int outlineThickness: 3
readonly property int fieldFontSize: Math.round(Style.font.heading * 1.125)
Expand Down