* change font size * MARK: refresh font size
()
| 791 | * MARK: refresh font size |
| 792 | */ |
| 793 | fontUpdater() { |
| 794 | for ( const thisWinKey in this.win ) { |
| 795 | this.sendToValidWindow(thisWinKey, 'win:updateFontSize') |
| 796 | } |
| 797 | this.multiWin = this.multiWin.filter((x) => !x.isDestroyed()) |
| 798 | for ( const displayWin of this.multiWin) { |
| 799 | displayWin.webContents.send('win:updateFontSize') |
| 800 | } |
| 801 | } |
| 802 | |
| 803 | // MARK: cNamedMulti |
| 804 | createNamedMulti(winName, windowArgs, extraCallback = null) { |
no test coverage detected