diff options
Diffstat (limited to 'app/forms/RouteAddressForm.ui.qml')
-rw-r--r-- | app/forms/RouteAddressForm.ui.qml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app/forms/RouteAddressForm.ui.qml b/app/forms/RouteAddressForm.ui.qml index 5e43e7f..a0ace76 100644 --- a/app/forms/RouteAddressForm.ui.qml +++ b/app/forms/RouteAddressForm.ui.qml @@ -46,6 +46,7 @@ import QtQuick.Layouts 1.2 Item { property alias toStreet: toStreet property alias toCity: toCity + property alias toState: toState property alias toCountry: toCountry property alias goButton: goButton property alias clearButton: clearButton @@ -117,6 +118,16 @@ Item { } Label { + id: label9 + text: qsTr("State") + } + + TextField { + id: toState + Layout.fillWidth: true + } + + Label { id: label8 text: qsTr("Country") } |