refactor: update ScrollBar policy to use AsNeeded for better usability (#1579)

* refactor: update `ScrollBarType` policy to use
`AsNeeded` for better usability

* add selecting of location settings with Enter

* add handlers to enter push
This commit is contained in:
Cyril Anisimov
2025-08-01 05:56:02 +02:00
committed by GitHub
parent 6cede712f5
commit dbeb7edd7a
13 changed files with 42 additions and 16 deletions
+6
View File
@@ -256,6 +256,9 @@ PageType {
onClicked: {
accessTypeSelector.currentIndex = 0
}
Keys.onEnterPressed: this.clicked()
Keys.onReturnPressed: this.clicked()
}
HorizontalRadioButton {
@@ -272,6 +275,9 @@ PageType {
ServersModel.getProcessedServerCredentials())
PageController.showBusyIndicator(false)
}
Keys.onEnterPressed: this.clicked()
Keys.onReturnPressed: this.clicked()
}
}
}