MenuOrder.swift 275 B

12345678
  1. public enum MenuOrder: Hashable, Sendable {
  2. /// The automatic behavior.
  3. case automatic
  4. /// Sorts items so the first item is closest to where the user opened the menu from.
  5. case priority
  6. /// Sorts items in the order given (top to bottom).
  7. case fixed
  8. }