diff --git a/WordPressAuthenticator.podspec b/WordPressAuthenticator.podspec index a1da9c9eb..89c6bec95 100644 --- a/WordPressAuthenticator.podspec +++ b/WordPressAuthenticator.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "WordPressAuthenticator" - s.version = "1.11.0-beta.3" + s.version = "1.11.0-beta.4" s.summary = "WordPressAuthenticator implements an easy and elegant way to authenticate your WordPress Apps." s.description = <<-DESC diff --git a/WordPressAuthenticator/NUX/NUXButton.swift b/WordPressAuthenticator/NUX/NUXButton.swift index 8a0d52927..e68d6ebff 100644 --- a/WordPressAuthenticator/NUX/NUXButton.swift +++ b/WordPressAuthenticator/NUX/NUXButton.swift @@ -41,6 +41,14 @@ import WordPressUI } } + open override func tintColorDidChange() { + // Update colors when toggling light/dark mode. + super.tintColorDidChange() + configureBackgrounds() + configureTitleColors() + } + + // MARK: - Instance Methods