Fix 'move to top' being shown on all multi-select screens (#7883)

This commit is contained in:
ByteHamster 2025-07-17 17:14:37 +02:00 committed by GitHub
parent e32dbaeb31
commit c4dc0ae9ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -45,11 +45,13 @@
<item
android:id="@+id/move_to_top_item"
android:icon="@drawable/ic_arrow_full_up"
android:title="@string/move_to_top_label" />
android:title="@string/move_to_top_label"
android:visible="false" />
<item
android:id="@+id/move_to_bottom_item"
android:icon="@drawable/ic_arrow_full_down"
android:title="@string/move_to_bottom_label" />
android:title="@string/move_to_bottom_label"
android:visible="false" />
</menu>