Installer
Installer copied to clipboard
Title bar being removed/updated on pressing back button
Describe the bug
The title for the installer will disappear on the taskbar and when hovering over the application.
To Reproduce Steps to reproduce the behavior:
- Open up the installer
- Accept license agreement and go to next page
- Press 'back' button
- The title will have disappeared.
Solution I didn't think this was worth making my own PR so I'll just leave the solution here In the createMainWindow function in index.js you can add this code to prevent the title from being updated whatsoever after window creation. This mitigates the issue.
// Prevents the page title from being updated
window.on('page-title-updated', (e) => {
e.preventDefault();
});