diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2021-04-16 12:12:50 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2021-06-10 09:20:33 +0100 |
commit | 9865ad27a53e69aa651608e356c5335e76bc54cf (patch) | |
tree | 7279db95737af8ce11647a72fe234e6a7297e65a | |
parent | 16b497e12b971443913e271f4d3e320b8693d411 (diff) | |
download | rtmux-9865ad27a53e69aa651608e356c5335e76bc54cf.tar.gz rtmux-9865ad27a53e69aa651608e356c5335e76bc54cf.tar.bz2 rtmux-9865ad27a53e69aa651608e356c5335e76bc54cf.zip |
Fix display-menu -xR, from Alexis Hildebrandt.
-rw-r--r-- | cmd-display-menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-display-menu.c b/cmd-display-menu.c index 5a5aabcd..de423e68 100644 --- a/cmd-display-menu.c +++ b/cmd-display-menu.c @@ -205,7 +205,7 @@ cmd_display_menu_get_position(struct client *tc, struct cmdq_item *item, if (xp == NULL || strcmp(xp, "C") == 0) xp = "#{popup_centre_x}"; else if (strcmp(xp, "R") == 0) - xp = "#{popup_right}"; + xp = "#{popup_pane_right}"; else if (strcmp(xp, "P") == 0) xp = "#{popup_pane_left}"; else if (strcmp(xp, "M") == 0) |