Fix focus issues after dismissal of consecutive dialogs (like Add PC -> Add PC error)

This commit is contained in:
Cameron Gutman
2019-03-31 19:32:17 -07:00
parent bc38c302ed
commit 0aa87aacc6
3 changed files with 14 additions and 16 deletions
+5
View File
@@ -424,6 +424,11 @@ ApplicationWindow {
standardButtons: Dialog.Ok | Dialog.Cancel
onOpened: {
// Force keyboard focus on the textbox so keyboard navigation works
editText.forceActiveFocus()
}
onAccepted: {
if (editText.text) {
ComputerManager.addNewHost(editText.text, false)