瀏覽代碼

Make entire history row open saved items on click.

Co-authored-by: Cursor <cursoragent@cursor.com>
AhtashamShahzad1 2 周之前
父節點
當前提交
f64781813e
共有 1 個文件被更改,包括 3 次插入0 次删除
  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)
     }
 }