(e)
| 1295 | ipcMain.on('toggleStoreBkp', toggleStoreBkp); |
| 1296 | |
| 1297 | function toggleGoogleFonts(e) |
| 1298 | { |
| 1299 | if (e != null && !validateSender(e.senderFrame)) return null; |
| 1300 | |
| 1301 | if (store != null) |
| 1302 | { |
| 1303 | isGoogleFontsEnabled = !isGoogleFontsEnabled; |
| 1304 | store.set('isGoogleFontsEnabled', isGoogleFontsEnabled); |
| 1305 | } |
| 1306 | } |
| 1307 | |
| 1308 | ipcMain.on('toggleGoogleFonts', toggleGoogleFonts); |
| 1309 |
nothing calls this directly
no test coverage detected