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 {
inputMethodHints: listForm.inputMethodHints
isInvalid: $isInvalid
readOnly: listForm.readOnly
selectByMouse: true
text: $value
height: ListFormStyle.lineHeight
......
......@@ -93,6 +93,7 @@ Item {
? TransparentTextInputStyle.text.color.focused
: TransparentTextInputStyle.text.color.normal
font.pointSize: TransparentTextInputStyle.text.fontSize
selectByMouse: true
verticalAlignment: TextInput.AlignVCenter
Keys.onEscapePressed: focus = false
......
......@@ -2,12 +2,14 @@ import QtQuick 2.7
import Common 1.0
import App.Styles 1.0
// =============================================================================
TabContainer {
Column {
anchors.fill: parent
spacing: 10
spacing: SettingsWindowStyle.forms.spacing
Form {
title: qsTr('callsTitle')
......
......@@ -7,6 +7,10 @@ QtObject {
property int height: 640
property int width: 1024
property QtObject forms: QtObject {
property int spacing: 10
}
property QtObject validButton: QtObject {
property int bottomMargin: 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