Quellcode durchsuchen

Photos widget: replace Memories shortcut with Updates

- Middle chip opens /updates with bell.fill icon.

Made-with: Cursor
huzaifahayat12 vor 3 Monaten
Ursprung
Commit
a6bef9bf55
1 geänderte Dateien mit 3 neuen und 3 gelöschten Zeilen
  1. 3 3
      google_apps/Widgets/PhotosDesktopWidgetView.swift

+ 3 - 3
google_apps/Widgets/PhotosDesktopWidgetView.swift

@@ -2,7 +2,7 @@ import AppKit
 import SwiftUI
 import WebKit
 
-/// Google Photos: medium embedded recent gallery with Albums / Memories / Search shortcuts.
+/// Google Photos: medium embedded recent gallery with Albums / Updates / Search shortcuts.
 struct PhotosDesktopWidgetView: View {
     let app: LauncherApp
     var isPreview: Bool = false
@@ -159,8 +159,8 @@ struct PhotosDesktopWidgetView: View {
                 PhotosShortcutChip(title: "Albums", systemImage: "rectangle.stack.fill") {
                     openPhotosPath("/albums")
                 }
-                PhotosShortcutChip(title: "Memories", systemImage: "sparkles") {
-                    openPhotosPath("/memories")
+                PhotosShortcutChip(title: "Updates", systemImage: "bell.fill") {
+                    openPhotosPath("/updates")
                 }
                 PhotosShortcutChip(title: "Search", systemImage: "magnifyingglass") {
                     openPhotosPath("/search")