Skip to content

Commit e8147e1

Browse files
committed
Ozone: Sublabel max width correction + Quick Menu sublabel rephrasings
1 parent 578fb24 commit e8147e1

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

intl/msg_hash_us.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9144,15 +9144,15 @@ MSG_HASH(
91449144
)
91459145
MSG_HASH(
91469146
MENU_ENUM_SUBLABEL_ADD_TO_PLAYLIST,
9147-
"Add the content to a playlist."
9147+
"Add this entry to a playlist."
91489148
)
91499149
MSG_HASH(
91509150
MENU_ENUM_LABEL_VALUE_CREATE_NEW_PLAYLIST,
91519151
"Create New Playlist"
91529152
)
91539153
MSG_HASH(
91549154
MENU_ENUM_SUBLABEL_CREATE_NEW_PLAYLIST,
9155-
"Create a new playlist and add the current entry to it."
9155+
"Create a new playlist and add this entry to it."
91569156
)
91579157
MSG_HASH(
91589158
MENU_ENUM_LABEL_VALUE_SET_CORE_ASSOCIATION,
@@ -9176,15 +9176,15 @@ MSG_HASH(
91769176
)
91779177
MSG_HASH(
91789178
MENU_ENUM_SUBLABEL_INFORMATION,
9179-
"View more information about the content."
9179+
"View more information about this content."
91809180
)
91819181
MSG_HASH(
91829182
MENU_ENUM_LABEL_VALUE_DOWNLOAD_PL_ENTRY_THUMBNAILS,
91839183
"Download Thumbnails"
91849184
)
91859185
MSG_HASH(
91869186
MENU_ENUM_SUBLABEL_DOWNLOAD_PL_ENTRY_THUMBNAILS,
9187-
"Download screenshot/box art/title screen thumbnail images for current content. Updates any existing thumbnails."
9187+
"Download thumbnail images for this content. Updates any existing images."
91889188
)
91899189

91909190
/* Playlist Item > Set Core Association */

menu/drivers/ozone.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5679,7 +5679,9 @@ static void ozone_update_scroll(ozone_handle_t *ozone,
56795679
static int ozone_get_sublabel_max_width(ozone_handle_t *ozone,
56805680
unsigned video_info_width, unsigned entry_padding)
56815681
{
5682-
int sublabel_max_width = video_info_width - entry_padding;
5682+
int sublabel_max_width = video_info_width
5683+
- (entry_padding * 2)
5684+
- (ozone->dimensions.entry_icon_padding * 2);
56835685

56845686
if (ozone->depth == 1)
56855687
sublabel_max_width -= (int)ozone->dimensions_sidebar_width;

0 commit comments

Comments
 (0)