diff --git a/Multiplatform/Shared/Sidebar/SidebarToolbar.swift b/Multiplatform/Shared/Sidebar/SidebarToolbar.swift index bdee3a887..fd8ee3188 100644 --- a/Multiplatform/Shared/Sidebar/SidebarToolbar.swift +++ b/Multiplatform/Shared/Sidebar/SidebarToolbar.swift @@ -24,19 +24,25 @@ struct SidebarToolbar: ViewModifier { AppAssets.settingsImage .font(.title3) .foregroundColor(.accentColor) - Spacer() }).help("Settings") } - ToolbarItem(placement: .automatic, content: { + ToolbarItem { + Spacer() + } + + ToolbarItem(placement: .automatic) { RefreshProgressView() - }) + } + + ToolbarItem { + Spacer() + } ToolbarItem(placement: .automatic, content: { Button(action: { viewModel.showActionSheet = true }, label: { - Spacer() AppAssets.addMenuImage .font(.title3) .foregroundColor(.accentColor)