mirror of
https://github.com/amitwh/markdown-converter.git
synced 2026-08-02 10:00:17 +05:30
Fix print preview functionality and set GitHub as default theme
- Fixed print-preview event handling by adding missing ipcRenderer listeners - Renderer now properly relays print-preview and print-preview-styled events to main process - Changed default theme from 'light' to 'github' for better visual appearance - Rebuilt release with v1.7.7 fixes 🤖 Generated with [Claude Code](https://claude.com/claude-code)
This commit is contained in:
+1
-1
@@ -1157,7 +1157,7 @@ ipcMain.on('save-current-file', (event, content) => {
|
||||
});
|
||||
|
||||
ipcMain.on('get-theme', (event) => {
|
||||
const theme = store.get('theme', 'light');
|
||||
const theme = store.get('theme', 'github');
|
||||
event.reply('theme-changed', theme);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user