refactor: remove provideLocationCheckbox gps_enabled requirement

pull/593/head
andrekir 2023-02-20 21:34:31 -03:00
rodzic 372f33cd9e
commit 4359ec8779
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -170,7 +170,7 @@ class SettingsFragment : ScreenFragment("Settings"), Logging {
if (connected == MeshService.ConnectionState.DISCONNECTED) if (connected == MeshService.ConnectionState.DISCONNECTED)
model.setOwner("") model.setOwner("")
if (requireContext().hasGps() && model.config.position.gpsEnabled) { if (requireContext().hasGps()) {
binding.provideLocationCheckbox.isEnabled = true binding.provideLocationCheckbox.isEnabled = true
} else { } else {
binding.provideLocationCheckbox.isChecked = false binding.provideLocationCheckbox.isChecked = false