diff --git a/Tusker/Screens/Compose/ComposeToolbar.swift b/Tusker/Screens/Compose/ComposeToolbar.swift index 8cecb2e6..4c19e37e 100644 --- a/Tusker/Screens/Compose/ComposeToolbar.swift +++ b/Tusker/Screens/Compose/ComposeToolbar.swift @@ -36,14 +36,14 @@ struct ComposeToolbar: View { MenuPicker(selection: $draft.visibility, options: Self.visibilityOptions, buttonStyle: .iconOnly) // // the button has a bunch of extra space by default, but combined with what we add it's too much -// .padding(.horizontal, -8) + .padding(.horizontal, -8) if mastodonController.instanceFeatures.localOnlyPosts { MenuPicker(selection: $draft.localOnly, options: [ .init(value: true, title: "Local-only", subtitle: "Only \(mastodonController.accountInfo!.instanceURL.host!)", image: UIImage(named: "link.broken")), .init(value: false, title: "Federated", image: UIImage(systemName: "link")) ], buttonStyle: .iconOnly) -// .padding(.horizontal, -8) + .padding(.horizontal, -8) } if let currentInput = uiState.currentInput, currentInput.toolbarElements.contains(.emojiPicker) {