Skip to content

Commit 2a8f46a

Browse files
committed
Fix an issue with Reply button hidden
1 parent 6b9ee34 commit 2a8f46a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

WordPress/Classes/ViewRelated/Notifications/ReplyTextView/ReplyTextView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ import Gridicons
286286
comment: "Accessibility Label for the enter full screen button on the comment reply text view")
287287

288288
// Reply button
289-
replyButton.setTitleColor(UIAppColor.tint, for: .normal)
289+
replyButton.setTitleColor(UIAppColor.brand, for: .normal)
290290
replyButton.titleLabel?.text = NSLocalizedString("Reply", comment: "Reply to a comment.")
291291
replyButton.accessibilityIdentifier = "reply-button"
292292
replyButton.accessibilityLabel = NSLocalizedString("Reply", comment: "Accessibility label for the reply button")

WordPress/Classes/ViewRelated/Reader/Comments/ReaderCommentsViewController.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -362,8 +362,8 @@ - (void)configureViewConstraints
362362
views:views]];
363363

364364
[NSLayoutConstraint activateConstraints:@[
365-
[self.replyTextView.leadingAnchor constraintEqualToAnchor:self.replyTextView.leadingAnchor],
366-
[self.replyTextView.trailingAnchor constraintEqualToAnchor:self.replyTextView.trailingAnchor],
365+
[self.replyTextView.leadingAnchor constraintEqualToAnchor:self.view.leadingAnchor],
366+
[self.replyTextView.trailingAnchor constraintEqualToAnchor:self.view.trailingAnchor],
367367
[self.view.keyboardLayoutGuide.topAnchor constraintEqualToAnchor:self.replyTextView.bottomAnchor]
368368
]];
369369

0 commit comments

Comments
 (0)