We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd2e81d commit d9ca9daCopy full SHA for d9ca9da
src/main.ts
@@ -83,6 +83,14 @@ async function startApp() {
83
app.quit();
84
});
85
86
+ // Load start screen - basic spinner
87
+ try {
88
+ await appWindow.loadRenderer('desktop-start');
89
+ } catch (error) {
90
+ dialog.showErrorBox('Startup failed', `Unknown error whilst loading start screen.\n\n${error}`);
91
+ return app.quit();
92
+ }
93
+
94
// Register basic handlers that are necessary during app's installation.
95
new PathHandlers().registerHandlers();
96
new AppInfoHandlers().registerHandlers(appWindow);
0 commit comments