diff --git a/Tusker/Screens/Timeline/TimelineJumpButton.swift b/Tusker/Screens/Timeline/TimelineJumpButton.swift index 8bda27f3..2f1cf090 100644 --- a/Tusker/Screens/Timeline/TimelineJumpButton.swift +++ b/Tusker/Screens/Timeline/TimelineJumpButton.swift @@ -20,6 +20,8 @@ class TimelineJumpButton: UIView { var config = UIButton.Configuration.plain() config.image = UIImage(systemName: "arrow.up") config.contentInsets = .zero + // We don't want a background for this button, even when accessibility button shapes are enabled, because it's in the navbar. + config.background.backgroundColor = .clear return UIButton(configuration: config) }()