Rename Preferences... menu to Settings... on macOS Ventura+

Discussion in 'Parallels Desktop for Mac Feature Suggestions' started by SebastianD4, Nov 29, 2023.

  1. SebastianD4

    SebastianD4 Bit poster

    Messages:
    1
    In macOS Ventura "Preferences..." has been renamed to "Settings...".

    It would be consistent if you rename your menu item too.

    ```swift
    if #available(macOS 10.13, *) {
    // Settings...
    } else {
    // Preferences...
    }
    ```

    ```objc
    if (@available(macOS 10.13, *)) {
    // Settings...
    } else {
    // Preferences...
    }
    ```

    AppKit Release Notes for macOS 10.13
     
    MatthewR20 likes this.

Share This Page