Skip to content

Commit

Permalink
menu: Move fw setup text right if editor disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
mintsuki committed Apr 19, 2024
1 parent b8a42e2 commit 87c2cc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -897,7 +897,7 @@ noreturn void _menu(bool first_run) {
}
#if defined(UEFI)
if (reboot_to_firmware_supported) {
set_cursor_pos_helper(terms[0]->cols - 37, 3);
set_cursor_pos_helper(terms[0]->cols - (editor_enabled ? 37 : 20), 3);
print("\e[32mS\e[0m Firmware Setup");
}
#endif
Expand Down

0 comments on commit 87c2cc1

Please sign in to comment.