Skip to content

Commit 9642823

Browse files
authored
Merge pull request #737 from woocommerce/issue/703-arrow-rtl
Set the chevron image to flip upon changing to a RTL language
2 parents 55fcc70 + a4fd447 commit 9642823

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

RELEASE-NOTES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
1.4
22
-----
3+
- bugfix: correctly flips chevron on Dashboard > New Orders, to support RTL languages.
34

45
1.3
56
-----

WooCommerce/Classes/ViewRelated/Dashboard/MyStore/NewOrdersViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ private extension NewOrdersViewController {
7777
descriptionLabel.textInsets = Constants.newOrdersDescriptionLabelInsets
7878
descriptionLabel.text = NSLocalizedString("Review, prepare, and ship these pending orders",
7979
comment: "Description text used on the UI element displayed when a user has pending orders to process.")
80-
chevronImageView.image = UIImage.chevronImage
80+
chevronImageView.image = UIImage.chevronImage.imageFlippedForRightToLeftLayoutDirection()
8181
}
8282
}
8383

0 commit comments

Comments
 (0)