From 17d30ad554f3c568bee0edcc9abba69be12c4707 Mon Sep 17 00:00:00 2001 From: hxperl Date: Thu, 3 Jun 2021 13:09:15 +0900 Subject: [PATCH] :art: Add UIColor context to fix CI Build compile --- Sources/LocalConsole/ResizeController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/LocalConsole/ResizeController.swift b/Sources/LocalConsole/ResizeController.swift index 4c80438..755289a 100644 --- a/Sources/LocalConsole/ResizeController.swift +++ b/Sources/LocalConsole/ResizeController.swift @@ -408,7 +408,7 @@ class PlatterView: UIView { lazy var doneButton: UIButton = { let button = UIButton(type: .custom) - button.backgroundColor = .systemBlue.resolvedColor(with: UITraitCollection(userInterfaceStyle: .dark)) + button.backgroundColor = UIColor.systemBlue.resolvedColor(with: UITraitCollection(userInterfaceStyle: .dark)) button.setTitle("Done", for: .normal) button.setTitleColor(.white, for: .normal) button.titleLabel?.font = .systemFont(ofSize: 17, weight: .medium)