remove white box around cursor in EditText

android:background was erroneously used instead of android:windowBackground.
This was causing a white box around the cursor.
Neither android:background nor android:windowBackground is needed.
This commit is contained in:
Josia Pietsch 2024-12-30 23:25:57 +01:00
parent ad5ee5e10e
commit cbaa853b1c
Signed by: jrpie
GPG key ID: E70B571D66986A2D

View file

@ -123,7 +123,6 @@
<style name="AlertDialogCustom" parent="Theme.AppCompat.Light.Dialog.Alert"> <style name="AlertDialogCustom" parent="Theme.AppCompat.Light.Dialog.Alert">
<item name="android:color">#000000</item> <item name="android:color">#000000</item>
<item name="android:textColor">@color/text_color_toggle</item> <item name="android:textColor">@color/text_color_toggle</item>
<item name="android:background">#ffffff</item>
</style> </style>
<style name="AlertDialogDanger" parent="AlertDialogCustom"> <style name="AlertDialogDanger" parent="AlertDialogCustom">