(x, y)
| 898 | } |
| 899 | |
| 900 | getWindowAtPoint(x, y) { |
| 901 | for (let column of this) { |
| 902 | for (let w of column) { |
| 903 | if (this.isWindowAtPoint(w, x, y)) |
| 904 | return w; |
| 905 | } |
| 906 | } |
| 907 | return null; |
| 908 | } |
| 909 | |
| 910 | addWindow(metaWindow, index, row) { |
| 911 | if (!this.selectedWindow) |
no test coverage detected