script: Let script handle empty custom input

This commit is contained in:
Nikita Zlobin 2023-08-10 23:19:53 +05:00 committed by Dave Davenport
parent 82f9605c30
commit 528419269e
1 changed files with 1 additions and 2 deletions

View File

@ -341,8 +341,7 @@ static ModeMode script_mode_result(Mode *sw, int mretv, char **input,
new_list =
execute_executor(sw, rmpd->cmd_list[selected_line].entry, &new_length,
1, &(rmpd->cmd_list[selected_line]));
} else if ((mretv & MENU_CUSTOM_INPUT) && *input != NULL &&
*input[0] != '\0') {
} else if ((mretv & MENU_CUSTOM_INPUT) && *input != NULL) {
if (rmpd->no_custom == FALSE) {
script_mode_reset_highlight(sw);
new_list = execute_executor(sw, *input, &new_length, 2, NULL);