Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/Site/SiteManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,9 @@ def add(self, address, all_file=True, settings=None, **kwargs):
site.settings["serving"] = True
site.saveSettings()
if all_file: # Also download user files on first sync
site.download(check_size=True, blind_includes=True)
# Spawn download in background so callers (e.g. actionWrapper) can return
# immediately and the loading screen + progress bar are visible to the user.
gevent.spawn(site.download, check_size=True, blind_includes=True)
return site

# Return or create site and start download site files
Expand Down
3 changes: 1 addition & 2 deletions src/Ui/media/Wrapper.css
Original file line number Diff line number Diff line change
Expand Up @@ -729,9 +729,8 @@ a {
z-index: 100;
top: 0;
left: 0;
transform: scaleX(0);
transform-origin: 0% 0%;
transform: translate3d(0, 0, 0);
transform: scaleX(0) translate3d(0, 0, 0);
height: 2px;
transition: transform 1s, opacity 1s;
display: none;
Expand Down
Loading