()
| 115 | } |
| 116 | |
| 117 | func (ms *MenuSystem) ExclusiveMenuOpen() bool { |
| 118 | for _, menu := range ms.ExclusiveMenus { |
| 119 | if menu.Opened { |
| 120 | return true |
| 121 | } |
| 122 | } |
| 123 | return false |
| 124 | } |
| 125 | |
| 126 | const ( |
| 127 | MenuAnchorNone = iota |
no outgoing calls
no test coverage detected