From 5b59ccc6a07391e46c87dbd3884047bc90fb517d Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Sun, 8 Sep 2019 14:38:32 -0700 Subject: [PATCH] Fixes non-legible toast view in AuthenticationViewController --- AltStore/Authentication/AuthenticationViewController.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AltStore/Authentication/AuthenticationViewController.swift b/AltStore/Authentication/AuthenticationViewController.swift index 30163986..56aefd43 100644 --- a/AltStore/Authentication/AuthenticationViewController.swift +++ b/AltStore/Authentication/AuthenticationViewController.swift @@ -104,6 +104,8 @@ private extension AuthenticationViewController { DispatchQueue.main.async { let toastView = ToastView(text: NSLocalizedString("Failed to Log In", comment: ""), detailText: error.localizedDescription) + toastView.textLabel.textColor = .altPink + toastView.detailTextLabel.textColor = .altPink toastView.show(in: self.navigationController?.view ?? self.view) self.toastView = toastView