2
0
mirror of synced 2025-01-10 22:36:09 +00:00

fix(StatusInputPage): updated input height leftovers (#804)

As part of https://github.com/status-im/status-desktop/issues/6637
This commit is contained in:
Alexandra Betouni 2022-07-27 16:33:55 +03:00 committed by GitHub
parent e5ab0cd2a7
commit 64ec74117d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View File

@ -107,7 +107,8 @@ Column {
label: "Label" label: "Label"
secondaryLabel: "secondary label" secondaryLabel: "secondary label"
placeholderText: "Placeholder" placeholderText: "Placeholder"
input.implicitHeight: 56 minimumHeight: 56
maximumHeight: 56
} }
StatusInput { StatusInput {
@ -162,7 +163,8 @@ Column {
StatusInput { StatusInput {
input.multiline: true input.multiline: true
placeholderText: "Multiline with static height" placeholderText: "Multiline with static height"
input.implicitHeight: 100 minimumHeight: 100
maximumHeight: 100
} }
StatusInput { StatusInput {

View File

@ -28,7 +28,7 @@ Item {
width: editText.width width: editText.width
placeholderText: "" placeholderText: ""
input.text: msgText input.text: msgText
input.implicitHeight: 40 maximumHeight: 40
} }
} }
RowLayout { RowLayout {