(name, options)
| 110 | window.Effect = { |
| 111 | |
| 112 | apply(name, options) { |
| 113 | options = options || {} |
| 114 | if (window.Pengu.isMac) { |
| 115 | applyWindowEffectMac(name, options) |
| 116 | } else { |
| 117 | applyWindowEffectWin(name, options) |
| 118 | } |
| 119 | }, |
| 120 | |
| 121 | clear() { |
| 122 | native.SetWindowVibrancy(null); |
nothing calls this directly
no test coverage detected