瀏覽代碼

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 天之前
父節點
當前提交
451c74d1a6
共有 1 個文件被更改,包括 1 次插入3 次删除
  1. 1 3
      zoom_app/ViewController.swift

+ 1 - 3
zoom_app/ViewController.swift

@@ -931,9 +931,7 @@ class ViewController: NSViewController {
931
         let actions = NSStackView(views: [
931
         let actions = NSStackView(views: [
932
             makeActionTile(title: "New meeting", symbol: "video.fill", color: accentOrange),
932
             makeActionTile(title: "New meeting", symbol: "video.fill", color: accentOrange),
933
             makeActionTile(title: "Join", symbol: "plus", color: accentBlue),
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
         actions.orientation = .horizontal
936
         actions.orientation = .horizontal
939
         actions.spacing = 16
937
         actions.spacing = 16