Przeglądaj źródła

Limit home action tiles to New meeting, Join, and Schedule.

Removes extra action buttons to match the requested three-button Zoom-style layout.

Made-with: Cursor
huzaifahayat12 5 dni temu
rodzic
commit
451c74d1a6
1 zmienionych plików z 1 dodań i 3 usunięć
  1. 1 3
      zoom_app/ViewController.swift

+ 1 - 3
zoom_app/ViewController.swift

@@ -931,9 +931,7 @@ class ViewController: NSViewController {
931 931
         let actions = NSStackView(views: [
932 932
             makeActionTile(title: "New meeting", symbol: "video.fill", color: accentOrange),
933 933
             makeActionTile(title: "Join", symbol: "plus", color: accentBlue),
934
-            makeActionTile(title: "Schedule", symbol: "calendar", color: accentBlue, action: #selector(scheduleMeetingWebTapped)),
935
-            makeActionTile(title: "Share screen", symbol: "rectangle.portrait.and.arrow.forward", color: accentBlue),
936
-            makeActionTile(title: "My notes", symbol: "pencil", color: accentBlue)
934
+            makeActionTile(title: "Schedule", symbol: "calendar", color: accentBlue, action: #selector(scheduleMeetingWebTapped))
937 935
         ])
938 936
         actions.orientation = .horizontal
939 937
         actions.spacing = 16