Fix scrollbar overlapping icons in the toolbar container on some devices (#411)

by setting a custom scrollbar thumb color / drawable
This commit is contained in:
arcarum 2024-01-13 09:36:00 +04:00 committed by GitHub
parent 3b48e49067
commit 0eab3c3281
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View file

@ -30,6 +30,7 @@
android:id="@+id/toolbar_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbarThumbHorizontal="@color/toolbar_scrollbar"
android:visibility="gone">
<LinearLayout
android:id="@+id/toolbar"

View file

@ -71,4 +71,7 @@
<!-- Actually used keyboard default background colors -->
<color name="keyboard_background_light">@color/keyboard_background_lxx_light_border</color>
<color name="keyboard_background_dark">#263238</color>
<!-- Scrollbar color -->
<color name="toolbar_scrollbar">#66808080</color>
</resources>