fixed display of notification about successful clearing of cached profiles

- limited the input for the Port field to only numeric values, in the range 1-65535
This commit is contained in:
vladimir.kuznetsov 2023-08-28 14:18:41 +03:00
parent fe08fd3f0a
commit 639c18395b
9 changed files with 22 additions and 32 deletions

View file

@ -45,7 +45,7 @@ PageType {
id: fl
anchors.top: backButton.bottom
anchors.bottom: parent.bottom
contentHeight: content.implicitHeight + continueButton.anchors.bottomMargin
contentHeight: content.implicitHeight + setupLaterButton.anchors.bottomMargin
Column {
id: content
@ -126,7 +126,9 @@ PageType {
}
}
DividerType {}
DividerType {
implicitWidth: parent.width
}
CardType {
implicitWidth: parent.width
@ -141,6 +143,11 @@ PageType {
}
}
Item {
implicitWidth: 1
implicitHeight: 1
}
BasicButtonType {
id: continueButton
@ -163,6 +170,8 @@ PageType {
}
BasicButtonType {
id: setupLaterButton
implicitWidth: parent.width
anchors.topMargin: 8
anchors.bottomMargin: 24