From add3d7d32ccf18056d55d7be8c13cf1d555b8b35 Mon Sep 17 00:00:00 2001 From: CMK Date: Tue, 6 Jul 2021 15:36:00 +0800 Subject: [PATCH] fix: compose content warning editor not using theme color issue --- .../Scene/Compose/View/StatusContentWarningEditorView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mastodon/Scene/Compose/View/StatusContentWarningEditorView.swift b/Mastodon/Scene/Compose/View/StatusContentWarningEditorView.swift index d782f7024..e81dc8b23 100644 --- a/Mastodon/Scene/Compose/View/StatusContentWarningEditorView.swift +++ b/Mastodon/Scene/Compose/View/StatusContentWarningEditorView.swift @@ -13,7 +13,7 @@ final class StatusContentWarningEditorView: UIView { // default hidden let containerBackgroundView: UIView = { let view = UIView() - view.backgroundColor = Asset.Colors.Background.secondarySystemBackground.color + view.backgroundColor = ThemeService.shared.currentTheme.value.secondarySystemBackgroundColor return view }()