Skip to content

Commit 12c3753

Browse files
committed
Fix description text truncation on main screen
1 parent ea92ffd commit 12c3753

File tree

2 files changed

+5
-1
lines changed
  • compose/ui/src/commonMain/kotlin/io/github/composegears/valkyrie/compose/ui
  • tools/idea-plugin

2 files changed

+5
-1
lines changed

compose/ui/src/commonMain/kotlin/io/github/composegears/valkyrie/compose/ui/InfoCard.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ fun InfoCard(
7070
text = description,
7171
style = MaterialTheme.typography.labelSmall.copy(fontSize = 10.sp),
7272
color = LocalContentColor.current.dim(),
73-
maxLines = 1,
73+
maxLines = 2,
7474
)
7575
}
7676
}

tools/idea-plugin/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
- Add a new mode for backward conversion from ImageVector to XML
88

9+
### Fixed
10+
11+
- Fix main screen description text being cut off or truncated
12+
913
### Changed
1014

1115
- Drop support for IntelliJ IDEA 2024.2

0 commit comments

Comments
 (0)