From b609e010aeb394927cff1ef7d5c9e72b5b57be3c Mon Sep 17 00:00:00 2001 From: CMK Date: Wed, 10 Nov 2021 17:55:37 +0800 Subject: [PATCH] fix: split view column separator line color not set to theme style issue --- Mastodon/Scene/Root/RootSplitViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mastodon/Scene/Root/RootSplitViewController.swift b/Mastodon/Scene/Root/RootSplitViewController.swift index 505e9089d..e9d7549bd 100644 --- a/Mastodon/Scene/Root/RootSplitViewController.swift +++ b/Mastodon/Scene/Root/RootSplitViewController.swift @@ -142,7 +142,7 @@ extension RootSplitViewController { private func setupBackground(theme: Theme) { // this set column separator line color - view.backgroundColor = .opaqueSeparator + view.backgroundColor = theme.separator } }