Skip to content
Snippets Groups Projects
Commit fe31b5a5 authored by Geoffrey Métais's avatar Geoffrey Métais
Browse files

Ensure checkbox is hidden by default in browser

parent 480e8804
No related merge requests found
......@@ -43,7 +43,7 @@
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginLeft="15dp"
android:visibility="@{item.getItemType() == MediaLibraryItem.TYPE_STORAGE ? View.VISIBLE : View.GONE}"
android:visibility="@{item.getItemType() == MediaLibraryItem.TYPE_STORAGE ? View.VISIBLE : View.GONE, default=gone}"
android:focusable="false"
android:enabled="@{checkEnabled}"
android:checked="@{checked}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment