You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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();
});
The text was updated successfully, but these errors were encountered:
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:
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.
The text was updated successfully, but these errors were encountered: