From e543f316db6cf01c9c37ef482f2d77ab3607c0ed29756fc9c2fbd19c9ebcf63f Mon Sep 17 00:00:00 2001 From: linuxero Date: Wed, 13 Nov 2024 21:02:53 +0100 Subject: [PATCH] Make Comboboxes editable. --- gui/AddCustomer.qml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gui/AddCustomer.qml b/gui/AddCustomer.qml index ae6e3b8..4b4e4b6 100644 --- a/gui/AddCustomer.qml +++ b/gui/AddCustomer.qml @@ -68,6 +68,7 @@ ColumnLayout ComboBox { Layout.fillWidth: true + editable: true } Label @@ -179,6 +180,7 @@ ColumnLayout { id: title Layout.fillWidth: true + editable: true } Label { @@ -210,6 +212,7 @@ ColumnLayout { id: jobdescription Layout.fillWidth: true + editable: true } Label { @@ -252,6 +255,7 @@ ColumnLayout { id: rank Layout.fillWidth: true + editable: true } } }