Skip to content

Commit 733e2ae

Browse files
authored
Fix path text cutoff
Changed the RelativeLayout height from fixed 50dp to wrap_content to ensure both name and path TextViews are fully visible. This prevents the path text from being truncated or hidden due to insufficient space within the card item.
1 parent 5ec9a55 commit 733e2ae

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<RelativeLayout
1313
android:layout_width="match_parent"
14-
android:layout_height="50dp"
14+
android:layout_height="wrap_content"
1515
android:padding="4dp">
1616

1717
<ImageView

0 commit comments

Comments
 (0)