* Hide the loading window * @param {number} time
(time = 1250)
| 1220 | * @param {number} time |
| 1221 | */ |
| 1222 | hide (time = 1250) { |
| 1223 | setTimeout(() => { |
| 1224 | if ( this.#win.isValid(this.#parent) ) { |
| 1225 | this.#win.win.main.setProgressBar(-1) |
| 1226 | this.#win.sendToValidWindow(this.#parent, 'loading:hide') |
| 1227 | } |
| 1228 | }, time) |
| 1229 | } |
| 1230 | |
| 1231 | /** |
| 1232 | * Do not display the count in the loading window |
no test coverage detected