diff options
| author | Timotej Lazar <timotej.lazar@araneo.si> | 2021-09-05 16:23:41 +0200 |
|---|---|---|
| committer | Timotej Lazar <timotej.lazar@araneo.si> | 2021-09-16 20:33:39 +0200 |
| commit | 54bb1c1c2be5fdd1b8e1eda7c9cd6fe40337800f (patch) | |
| tree | 972edd9689c3d6a8e109c93eed00355fd96e3319 /Fields/Text.qml | |
| parent | 8d44150598a4e04a751b7df0d8c91ea29099e10e (diff) | |
Clean up field types
Diffstat (limited to 'Fields/Text.qml')
| -rw-r--r-- | Fields/Text.qml | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/Fields/Text.qml b/Fields/Text.qml index b4e4dbf..55542e9 100644 --- a/Fields/Text.qml +++ b/Fields/Text.qml @@ -24,7 +24,6 @@ Label { id: popup width: parent.width - height: parent.height padding: 0 onOpened: { @@ -35,11 +34,9 @@ Label { TextInput { id: input + anchors { fill: parent; leftMargin: 2; rightMargin: 2 } + padding: 0 clip: true - padding: 2 - topPadding: 0 - bottomPadding: 0 - width: parent.width onAccepted: { value = input.text.trim() |
