Render small actions-row widgets as single-column action tiles so labels stay fully visible instead of getting cramped in horizontal rows. Made-with: Cursor
@@ -84,7 +84,11 @@ struct DesktopWidgetView: View {
if showHeader {
header
}
- rowActions(maxActions: 3)
+ if size == .small {
+ gridActions(columns: 1, maxActions: 3)
+ } else {
+ rowActions(maxActions: 3)
+ }
case .actionsGrid(let columns):