Commit dedf2087 authored by Ronan Abhamon's avatar Ronan Abhamon

fix(ui/modules/Common/Form/ListForm): use correctly `selectedByMouse`

parent 9ecfa002
...@@ -167,7 +167,6 @@ RowLayout { ...@@ -167,7 +167,6 @@ RowLayout {
inputMethodHints: listForm.inputMethodHints inputMethodHints: listForm.inputMethodHints
isInvalid: $isInvalid isInvalid: $isInvalid
readOnly: listForm.readOnly readOnly: listForm.readOnly
selectByMouse: true
text: $value text: $value
height: ListFormStyle.lineHeight height: ListFormStyle.lineHeight
......
...@@ -93,6 +93,7 @@ Item { ...@@ -93,6 +93,7 @@ Item {
? TransparentTextInputStyle.text.color.focused ? TransparentTextInputStyle.text.color.focused
: TransparentTextInputStyle.text.color.normal : TransparentTextInputStyle.text.color.normal
font.pointSize: TransparentTextInputStyle.text.fontSize font.pointSize: TransparentTextInputStyle.text.fontSize
selectByMouse: true
verticalAlignment: TextInput.AlignVCenter verticalAlignment: TextInput.AlignVCenter
Keys.onEscapePressed: focus = false Keys.onEscapePressed: focus = false
......
...@@ -2,12 +2,14 @@ import QtQuick 2.7 ...@@ -2,12 +2,14 @@ import QtQuick 2.7
import Common 1.0 import Common 1.0
import App.Styles 1.0
// ============================================================================= // =============================================================================
TabContainer { TabContainer {
Column { Column {
anchors.fill: parent anchors.fill: parent
spacing: 10 spacing: SettingsWindowStyle.forms.spacing
Form { Form {
title: qsTr('callsTitle') title: qsTr('callsTitle')
......
...@@ -7,6 +7,10 @@ QtObject { ...@@ -7,6 +7,10 @@ QtObject {
property int height: 640 property int height: 640
property int width: 1024 property int width: 1024
property QtObject forms: QtObject {
property int spacing: 10
}
property QtObject validButton: QtObject { property QtObject validButton: QtObject {
property int bottomMargin: 30 property int bottomMargin: 30
property int rightMargin: 30 property int rightMargin: 30
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment