(metaWindow)
| 841 | } |
| 842 | |
| 843 | isFullyVisible(metaWindow) { |
| 844 | let clone = metaWindow.clone; |
| 845 | let x = this.visibleX(metaWindow); |
| 846 | let workArea = this.workArea(); |
| 847 | let min = workArea.x; |
| 848 | |
| 849 | return min <= x && x + clone.width < min + workArea.width; |
| 850 | } |
| 851 | |
| 852 | visibleRatio(metaWindow) { |
| 853 | let clone = metaWindow.clone; |
no test coverage detected