This repository was archived by the owner on Feb 27, 2023. It is now read-only.

Description
|
if (ui->passwordRadio->isChecked()) |
On entering the wifi dialog, the listbox is populated with a list of found wifi SSIDs with the focus set to this list box.
If you are using cursor keys on the keyboard to move the selection down to the SSID you want, as soon as you press it once, the focus shifts to the username or password fields due to this block of code.
Not much of a problem if you are using a mouse since you can directly click on the SSID you want and will probably like the focus jumping directly to the next appropriate tab, but it's not so good when using the keyboard.
Removing this focus setting code block would make the dialog more keyboard friendly.
Or can you think of a better implementation?