From 2113c76cf0d43bad3d115923917e25e6ce9f56cc Mon Sep 17 00:00:00 2001 From: Vova Ignatov Date: Fri, 21 Nov 2025 12:43:23 +0000 Subject: [PATCH] IOS-5429 Fix divider color --- .../TextEditor/Set/Views/Header/SetHeaderSettingsView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Anytype/Sources/PresentationLayer/TextEditor/Set/Views/Header/SetHeaderSettingsView.swift b/Anytype/Sources/PresentationLayer/TextEditor/Set/Views/Header/SetHeaderSettingsView.swift index 60fef92d22..0794704dac 100644 --- a/Anytype/Sources/PresentationLayer/TextEditor/Set/Views/Header/SetHeaderSettingsView.swift +++ b/Anytype/Sources/PresentationLayer/TextEditor/Set/Views/Header/SetHeaderSettingsView.swift @@ -52,7 +52,7 @@ struct SetHeaderSettingsView: View { Rectangle() .fill(Color.clear) .frame(width: 1, height: 28) - .background(model.isActiveCreateButton ? Color.Control.accent80 : Color.Control.transparentSecondary) + .background(model.isActiveCreateButton ? Color.Control.accent80 : Color.Shape.transperentSecondary) StandardButton(.image(.X18.listArrow), style: .primaryXSmall, corners: [.topRight, .bottomRight]) { UISelectionFeedbackGenerator().selectionChanged() model.onSecondaryCreateTap()