Fix channel name edit

This commit is contained in:
Armel FAUVEAU
2024-07-04 15:24:33 +02:00
parent 822781900b
commit ba3b4d5f09

View File

@@ -765,9 +765,11 @@ void UI_DisplayMenu(void)
} }
else else
{ // show the channel name being edited { // show the channel name being edited
UI_PrintString(edit, menu_item_x1, 0, 2, 8); //UI_PrintString(edit, menu_item_x1, 0, 2, 8);
UI_PrintString(edit, menu_item_x1, menu_item_x2, 2, 8);
if (edit_index < 10) if (edit_index < 10)
UI_PrintString("^", menu_item_x1 + (8 * edit_index), 0, 4, 8); // show the cursor //UI_PrintString("^", menu_item_x1 + (8 * edit_index), 0, 4, 8); // show the cursor
UI_PrintString("^", menu_item_x1 - 1 + (8 * edit_index),0, 4, 8); // show the cursor
} }
if (!gAskForConfirmation) if (!gAskForConfirmation)