windows linux funktion

This commit is contained in:
2024-11-12 16:40:47 +01:00
parent d7b2243919
commit f6dd06e4df

View File

@@ -1,6 +1,7 @@
import QtQuick
import QtQuick.Layouts
import QtQuick.Controls
import QtQuick.Controls.Fusion 2.3
ColumnLayout
{
@@ -143,13 +144,15 @@ ColumnLayout
{
Layout.fillWidth: true
Layout.preferredHeight: 100
TextArea
{
id: customerInfo
background: Rectangle
{
color: palette.base
border.color: customerInfo.activeFocus? palette.highlight: palette.base
color: customerInfo.palette.base
border.color: customerInfo.activeFocus? customerInfo.palette.highlight: customerInfo.palette.base
}
}
}
@@ -264,8 +267,8 @@ ColumnLayout
id: contactInfo
background: Rectangle
{
color: palette.base
border.color: contactInfo.activeFocus? palette.highlight: palette.base
color: contactInfo.palette.base
border.color: contactInfo.activeFocus? contactInfo.palette.highlight: contactInfo.palette.base
}
}
}