Przeglądaj źródła

Make entire history row open saved items on click.

Co-authored-by: Cursor <cursoragent@cursor.com>
AhtashamShahzad1 2 tygodni temu
rodzic
commit
f64781813e
1 zmienionych plików z 3 dodań i 0 usunięć
  1. 3 0
      App AI for Reddit/Views/AIHistoryView.swift

+ 3 - 0
App AI for Reddit/Views/AIHistoryView.swift

@@ -247,7 +247,10 @@ private struct AIHistoryRowView: View {
                         .stroke(AppTheme.cardBorder, lineWidth: 1)
                 )
         )
+        .contentShape(RoundedRectangle(cornerRadius: AppTheme.cornerRadiusSmall, style: .continuous))
         .hoverCard(cornerRadius: AppTheme.cornerRadiusSmall)
+        .hoverCursor()
+        .onTapGesture(perform: onOpen)
     }
 }