From f6dd06e4dfbf2acb9f5470bd330ee58057ebfcb504f9355ad2dce4f653b9590e Mon Sep 17 00:00:00 2001 From: Marco Gatzen Date: Tue, 12 Nov 2024 16:40:47 +0100 Subject: [PATCH] windows linux funktion --- gui/AddCustomer.qml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/gui/AddCustomer.qml b/gui/AddCustomer.qml index fef64ad..afdfefe 100644 --- a/gui/AddCustomer.qml +++ b/gui/AddCustomer.qml @@ -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 } } }