summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2021-04-16 12:12:50 +0100
committerNicholas Marriott <nicholas.marriott@gmail.com>2021-06-10 09:20:33 +0100
commit9865ad27a53e69aa651608e356c5335e76bc54cf (patch)
tree7279db95737af8ce11647a72fe234e6a7297e65a
parent16b497e12b971443913e271f4d3e320b8693d411 (diff)
Fix display-menu -xR, from Alexis Hildebrandt.
-rw-r--r--cmd-display-menu.c2
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)