Skip to content

Commit facd51e

Browse files
author
Isaac
committed
Fix buttons
1 parent 5a92faa commit facd51e

5 files changed

Lines changed: 6 additions & 6 deletions

submodules/AuthorizationUI/Sources/AuthorizationSequenceEmailEntryControllerNode.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ final class AuthorizationSequenceEmailEntryControllerNode: ASDisplayNode, UIText
113113
(self.signInWithAppleButton as? ASAuthorizationAppleIDButton)?.cornerRadius = 11
114114
}
115115

116-
self.proceedNode = SolidRoundedButtonNode(title: self.strings.Login_Continue, theme: SolidRoundedButtonTheme(theme: self.theme), glass: true, height: 50.0, cornerRadius: 50.0 * 0.5)
116+
self.proceedNode = SolidRoundedButtonNode(title: self.strings.Login_Continue, theme: SolidRoundedButtonTheme(theme: self.theme), glass: false, height: 50.0, cornerRadius: 50.0 * 0.5)
117117
self.proceedNode.progressType = .embedded
118118

119119
self.codeSeparatorNode = ASDisplayNode()

submodules/AuthorizationUI/Sources/AuthorizationSequencePasswordEntryControllerNode.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ final class AuthorizationSequencePasswordEntryControllerNode: ASDisplayNode, UIT
107107
self.codeField.textField.tintColor = self.theme.list.itemAccentColor
108108
self.codeField.textField.accessibilityHint = self.strings.Login_VoiceOver_Password
109109

110-
self.proceedNode = SolidRoundedButtonNode(title: self.strings.Login_Continue, theme: SolidRoundedButtonTheme(theme: self.theme), glass: true, height: 50.0, cornerRadius: 50.0 * 0.5)
110+
self.proceedNode = SolidRoundedButtonNode(title: self.strings.Login_Continue, theme: SolidRoundedButtonTheme(theme: self.theme), glass: false, height: 50.0, cornerRadius: 50.0 * 0.5)
111111
self.proceedNode.progressType = .embedded
112112
self.proceedNode.isEnabled = false
113113

submodules/AuthorizationUI/Sources/AuthorizationSequencePhoneEntryControllerNode.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ final class AuthorizationSequencePhoneEntryControllerNode: ASDisplayNode {
423423

424424
self.phoneAndCountryNode = PhoneAndCountryNode(strings: strings, theme: theme)
425425

426-
self.proceedNode = SolidRoundedButtonNode(title: self.strings.Login_Continue, theme: SolidRoundedButtonTheme(theme: self.theme), glass: true, height: 50.0, cornerRadius: 50 * 0.5)
426+
self.proceedNode = SolidRoundedButtonNode(title: self.strings.Login_Continue, theme: SolidRoundedButtonTheme(theme: self.theme), glass: false, height: 50.0, cornerRadius: 50 * 0.5)
427427
self.proceedNode.progressType = .embedded
428428
self.proceedNode.isEnabled = false
429429

@@ -857,7 +857,7 @@ final class PhoneConfirmationController: ViewController {
857857
self.cancelButton.accessibilityTraits = [.button]
858858
self.cancelButton.accessibilityLabel = strings.Login_Edit
859859

860-
self.proceedNode = SolidRoundedButtonNode(title: strings.Login_Continue, theme: SolidRoundedButtonTheme(theme: theme), glass: true, height: 50.0, cornerRadius: 50.0 * 0.5)
860+
self.proceedNode = SolidRoundedButtonNode(title: strings.Login_Continue, theme: SolidRoundedButtonTheme(theme: theme), glass: false, height: 50.0, cornerRadius: 50.0 * 0.5)
861861
self.proceedNode.progressType = .embedded
862862

863863
let font = Font.with(size: 20.0, design: .regular, traits: [.monospacedNumbers])

submodules/AuthorizationUI/Sources/AuthorizationSequenceSignUpControllerNode.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ final class AuthorizationSequenceSignUpControllerNode: ASDisplayNode, UITextFiel
152152
self.addPhotoButton.addSubnode(self.currentPhotoNode)
153153
self.addPhotoButton.allowsGroupOpacity = true
154154

155-
self.proceedNode = SolidRoundedButtonNode(title: self.strings.Login_Continue, theme: SolidRoundedButtonTheme(theme: self.theme), glass: true, height: 50.0, cornerRadius: 50.0 * 0.5)
155+
self.proceedNode = SolidRoundedButtonNode(title: self.strings.Login_Continue, theme: SolidRoundedButtonTheme(theme: self.theme), glass: false, height: 50.0, cornerRadius: 50.0 * 0.5)
156156
self.proceedNode.progressType = .embedded
157157

158158
super.init()

submodules/AuthorizationUI/Sources/AuthorizationSequenceSplashController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public final class AuthorizationSequenceSplashController: ViewController {
7373

7474
self.controller = RMIntroViewController(backgroundColor: theme.list.plainBackgroundColor, primaryColor: theme.list.itemPrimaryTextColor, buttonColor: theme.intro.startButtonColor, accentColor: theme.list.itemAccentColor, regularDotColor: theme.intro.dotColor, highlightedDotColor: theme.list.itemAccentColor, suggestedLocalizationSignal: localizationSignal)
7575

76-
self.startButton = SolidRoundedButtonNode(title: "Start Messaging", theme: SolidRoundedButtonTheme(theme: theme), glass: true, height: 50.0, cornerRadius: 50.0 * 0.5, isShimmering: true)
76+
self.startButton = SolidRoundedButtonNode(title: "Start Messaging", theme: SolidRoundedButtonTheme(theme: theme), glass: false, height: 50.0, cornerRadius: 50.0 * 0.5, isShimmering: true)
7777

7878
super.init(navigationBarPresentationData: nil)
7979

0 commit comments

Comments
 (0)