File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -708,6 +708,7 @@ static void mui_compute_entries_box(mui_handle_t* mui, int width)
708
708
float sum = 0 ;
709
709
size_t entries_end = menu_entries_get_end ();
710
710
float scale_factor = menu_display_get_dpi ();
711
+ uintptr_t texture_switch2 = 0 ;
711
712
712
713
for (i = 0 ; i < entries_end ; i ++ )
713
714
{
@@ -718,9 +719,15 @@ static void mui_compute_entries_box(mui_handle_t* mui, int width)
718
719
719
720
sublabel_str [0 ] = '\0' ;
720
721
722
+ /* set texture_switch2 */
723
+ if (node -> texture_switch2_set )
724
+ texture_switch2 = node -> texture_switch2 ;
725
+
721
726
if (menu_entry_get_sublabel (i , sublabel_str , sizeof (sublabel_str )))
722
727
{
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);
724
731
lines = mui_count_lines (sublabel_str );
725
732
}
726
733
You can’t perform that action at this time.
0 commit comments