(container, x, y)
| 88 | return false; |
| 89 | } |
| 90 | onMouseEntered(container, x, y) { |
| 91 | application.cursor = cursors.arrow; |
| 92 | this.changeState(container, this.isSelected(container) ? 0 : 2); |
| 93 | } |
| 94 | onMouseExited(container, x, y) { |
| 95 | this.changeState(container, this.isSelected(container) ? 0 : 1); |
| 96 | } |
no test coverage detected