aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2022-02-24 12:15:13 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-03-06 18:56:45 +0100
commit29f8e1e60d7f9aad52b7e551cf0497e5cc86b34b (patch)
tree241f08465553d46cdcc555d464fce6639f762f5e
parentdesign: Location bar and other UI styling (diff)
downloadsophie-29f8e1e60d7f9aad52b7e551cf0497e5cc86b34b.tar.gz
sophie-29f8e1e60d7f9aad52b7e551cf0497e5cc86b34b.tar.zst
sophie-29f8e1e60d7f9aad52b7e551cf0497e5cc86b34b.zip
fix: Stop spinner after in-page navigation
Signed-off-by: Kristóf Marussy <kristof@marussy.com>
-rw-r--r--packages/main/src/infrastructure/electron/impl/ElectronServiceView.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/main/src/infrastructure/electron/impl/ElectronServiceView.ts b/packages/main/src/infrastructure/electron/impl/ElectronServiceView.ts
index c4f7e4d..6ff8e21 100644
--- a/packages/main/src/infrastructure/electron/impl/ElectronServiceView.ts
+++ b/packages/main/src/infrastructure/electron/impl/ElectronServiceView.ts
@@ -80,7 +80,7 @@ export default class ElectronServiceView implements ServiceView {
80 service.startedLoading(); 80 service.startedLoading();
81 }); 81 });
82 82
83 webContents.on('did-finish-load', () => { 83 webContents.on('did-stop-loading', () => {
84 service.finishedLoading(); 84 service.finishedLoading();
85 }); 85 });
86 86