Skip to content
This repository was archived by the owner on Oct 18, 2024. It is now read-only.

Commit 800600e

Browse files
committed
fix: make empty state view non-clickable and non-focusable (closes #1171)
1 parent 6cdb6bd commit 800600e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

app/src/main/res/layout/fragment_empty_state.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222
<com.itsaky.androidide.ui.EmptyView
2323
android:id="@+id/empty_view"
2424
android:layout_width="match_parent"
25-
android:layout_height="match_parent"/>
25+
android:layout_height="match_parent"
26+
android:background="?attr/colorSurface"
27+
android:clickable="false"
28+
android:focusable="false" />
2629

2730
</ViewFlipper>

0 commit comments

Comments
 (0)