preserve item order when skipping executors #799

This commit is contained in:
Chris Lee
2021-02-25 00:01:39 +01:00
parent 0f00212c58
commit 49e7f54d2f
2 changed files with 13 additions and 9 deletions

View File

@@ -269,8 +269,9 @@ void init_panel()
init_freespace_panel(p);
if (panel_items_order[k] == ':')
init_separator_panel(p);
if (panel_items_order[k] == 'E')
if (panel_items_order[k] == 'E') {
init_execp_panel(p);
}
if (panel_items_order[k] == 'P')
init_button_panel(p);
}