| Index: ios/chrome/browser/ui/reading_list/reading_list_empty_collection_background.mm
|
| diff --git a/ios/chrome/browser/ui/reading_list/reading_list_empty_collection_background.mm b/ios/chrome/browser/ui/reading_list/reading_list_empty_collection_background.mm
|
| index 360521e98e75a5537ced87ed451e43faffea14af..d3eaca49850a645debf07dfd71e62ae10f07f79a 100644
|
| --- a/ios/chrome/browser/ui/reading_list/reading_list_empty_collection_background.mm
|
| +++ b/ios/chrome/browser/ui/reading_list/reading_list_empty_collection_background.mm
|
| @@ -108,7 +108,9 @@ const CGFloat kPercentageFromTopForPosition = 0.4;
|
| NSString* accessibilityInstructionString = @":";
|
|
|
| // Add the images inside the string.
|
| - if (IsCompact()) {
|
| + if (IsCompact() || !IsIPadIdiom()) {
|
| + // TODO(crbug.com/698726): When the share icon is displayed in the toolbar
|
| + // for landscape iPhone 6+, remove !IsIPadIdiom().
|
| // If the device has a compact display the share menu is accessed from the
|
| // toolbar menu. If it is expanded, the share menu is directly accessible.
|
| [self attachIconNamed:kToolbarMenuIcon
|
|
|