Index: sources/gui/qml/components/TextEntry.qml =================================================================== diff -u -r559dc64d12cf7647ec8c29ccbf4ca90f90e5e3a2 -r5154e66736a0157835b003e7dfba5fcfb2ffcb6c --- sources/gui/qml/components/TextEntry.qml (.../TextEntry.qml) (revision 559dc64d12cf7647ec8c29ccbf4ca90f90e5e3a2) +++ sources/gui/qml/components/TextEntry.qml (.../TextEntry.qml) (revision 5154e66736a0157835b003e7dfba5fcfb2ffcb6c) @@ -7,7 +7,7 @@ * * \file TextEntry.qml * \author (last) Behrouz NematiPour - * \date (last) 02-Apr-2023 + * \date (last) 03-Apr-2023 * \author (original) Behrouz NematiPour * \date (original) 16-Apr-2021 * @@ -54,9 +54,12 @@ function doFocus( vFocus ) { if ( vFocus ) { - if ( ! _root.hasCursor ) { - _input.selectAll() - } + //TODO: Not sure why if there is no cursor all should be selected, + // tested and couln't find anything, disabled for now. + // was causeing on disabling the WiFi Static IP entry. + // if ( ! _root.hasCursor ) { + // _input.selectAll() + // } _keyboard.setVisible(true) } } Index: sources/gui/qml/pages/settings/SettingsStack.qml =================================================================== diff -u -r559dc64d12cf7647ec8c29ccbf4ca90f90e5e3a2 -r5154e66736a0157835b003e7dfba5fcfb2ffcb6c --- sources/gui/qml/pages/settings/SettingsStack.qml (.../SettingsStack.qml) (revision 559dc64d12cf7647ec8c29ccbf4ca90f90e5e3a2) +++ sources/gui/qml/pages/settings/SettingsStack.qml (.../SettingsStack.qml) (revision 5154e66736a0157835b003e7dfba5fcfb2ffcb6c) @@ -7,7 +7,7 @@ * * \file SettingsStack.qml * \author (last) Behrouz NematiPour - * \date (last) 03-Apr-2023 + * \date (last) 05-Apr-2023 * \author (original) Behrouz NematiPour * \date (original) 16-Apr-2021 * @@ -314,7 +314,7 @@ } Connections { target: _settingsRoInputSwitch - function onCheckedChanged() { + function onClicked() { vDuetRoWaterDG.doAdjustment ( _settingsRoInputSwitch.checked ) } }