From 7bbca4939537bcb12d9488cbd0e88fb8bbb5dbc3 Mon Sep 17 00:00:00 2001 From: nicm Date: Fri, 20 Mar 2020 17:26:14 +0000 Subject: Fix positioning of menu in choose modes and a couple of keys in tree mode. --- window-tree.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'window-tree.c') diff --git a/window-tree.c b/window-tree.c index d163dd9e..4d5b4a1e 100644 --- a/window-tree.c +++ b/window-tree.c @@ -54,8 +54,8 @@ static void window_tree_key(struct window_mode_entry *, "}" static const struct menu_item window_tree_menu_items[] = { - { "Select", 'E', NULL }, - { "Expand", 'R', NULL }, + { "Select", '\r', NULL }, + { "Expand", KEYC_RIGHT, NULL }, { "", KEYC_NONE, NULL }, { "Tag", 't', NULL }, { "Tag All", '\024', NULL }, -- cgit