Bladeren bron

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 3 maanden geleden
bovenliggende
commit
451c74d1a6
1 gewijzigde bestanden met toevoegingen van 1 en 3 verwijderingen
  1. 1 3
      zoom_app/ViewController.swift

+ 1 - 3
zoom_app/ViewController.swift

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