Merge pull request #6215 from Bnyro/master

fix: input method for submitting sponsorblock segments
This commit is contained in:
Bnyro 2024-07-11 17:57:55 +02:00 committed by GitHub
commit 479565c494
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -36,7 +36,7 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:digits="0123456789.:" android:digits="0123456789.:"
android:inputType="number" /> android:inputType="time" />
</com.google.android.material.textfield.TextInputLayout> </com.google.android.material.textfield.TextInputLayout>
<com.google.android.material.textfield.TextInputLayout <com.google.android.material.textfield.TextInputLayout
@ -50,7 +50,8 @@
android:id="@+id/end_time" android:id="@+id/end_time"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:inputType="numberDecimal" /> android:digits="0123456789.:,"
android:inputType="time" />
</com.google.android.material.textfield.TextInputLayout> </com.google.android.material.textfield.TextInputLayout>
</LinearLayout> </LinearLayout>