Skip to content

Commit

Permalink
hide spinner outside of initial load
Browse files Browse the repository at this point in the history
  • Loading branch information
sdumetz committed Dec 17, 2024
1 parent a8aca19 commit 4dcbe8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/client/ui/explorer/ContentView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export default class ContentView extends DocumentView
}

return html`<div class="ff-fullsize sv-content-only">${sceneView}</div>
<sv-spinner ?visible=${isLoading} .assetPath=${this.assetPath}></sv-spinner>
<sv-spinner ?visible=${isLoading && isInitialLoad} .assetPath=${this.assetPath}></sv-spinner>
${captionView}
${promptVisible ? html`<sv-action-prompt></sv-action-prompt>` : null}`;
}
Expand Down

0 comments on commit 4dcbe8b

Please sign in to comment.