Fixed negative lat/lon manual input bug

pull/101/head
Arty Bishop 2022-07-16 13:47:41 +02:00
rodzic 73557d30f2
commit bf1ac5fc2c
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 5C71CFDC37AD73CC
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -57,7 +57,7 @@
android:id="@+id/position_lat_edit"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:digits="0123456789."
android:digits="0123456789.-"
android:inputType="number" />
</com.google.android.material.textfield.TextInputLayout>
@ -95,7 +95,7 @@
android:id="@+id/position_lon_edit"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:digits="0123456789."
android:digits="0123456789.-"
android:inputType="number" />
</com.google.android.material.textfield.TextInputLayout>