mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-23 06:38:07 +00:00
fix(ui/modules/Common/Form/ListForm): use correctly selectedByMouse
This commit is contained in:
parent
9ecfa0022b
commit
dedf2087ce
4 changed files with 8 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue