Skip to content

Commit 6c91c39

Browse files
author
Brad Parker
committedAug 18, 2017
glui: fix entry box highlight calculation
1 parent 59aaabb commit 6c91c39

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed
 

‎menu/drivers/materialui.c

+8-1
Original file line numberDiff line numberDiff line change
@@ -708,6 +708,7 @@ static void mui_compute_entries_box(mui_handle_t* mui, int width)
708708
float sum = 0;
709709
size_t entries_end = menu_entries_get_end();
710710
float scale_factor = menu_display_get_dpi();
711+
uintptr_t texture_switch2 = 0;
711712

712713
for (i = 0; i < entries_end; i++)
713714
{
@@ -718,9 +719,15 @@ static void mui_compute_entries_box(mui_handle_t* mui, int width)
718719

719720
sublabel_str[0] = '\0';
720721

722+
/* set texture_switch2 */
723+
if (node->texture_switch2_set)
724+
texture_switch2 = node->texture_switch2;
725+
721726
if (menu_entry_get_sublabel(i, sublabel_str, sizeof(sublabel_str)))
722727
{
723-
word_wrap(sublabel_str, sublabel_str, (int)(usable_width / mui->glyph_width2), false);
728+
int icon_margin = texture_switch2 ? mui->icon_size : 0;
729+
730+
word_wrap(sublabel_str, sublabel_str, (int)((usable_width - icon_margin) / mui->glyph_width2), false);
724731
lines = mui_count_lines(sublabel_str);
725732
}
726733

0 commit comments

Comments
 (0)
Please sign in to comment.