From 92cab55c5541ccbfee84643265ff5cb33076e942 Mon Sep 17 00:00:00 2001 From: nicm Date: Tue, 22 Feb 2022 11:01:57 +0000 Subject: [PATCH] Use correct size for screen when popup is created without borders. --- usr.bin/tmux/popup.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/tmux/popup.c b/usr.bin/tmux/popup.c index a9dfe37901c..e5136be7ed0 100644 --- a/usr.bin/tmux/popup.c +++ b/usr.bin/tmux/popup.c @@ -1,4 +1,4 @@ -/* $OpenBSD: popup.c,v 1.45 2022/02/16 18:55:05 nicm Exp $ */ +/* $OpenBSD: popup.c,v 1.46 2022/02/22 11:01:57 nicm Exp $ */ /* * Copyright (c) 2020 Nicholas Marriott @@ -690,7 +690,7 @@ popup_display(int flags, enum box_lines lines, struct cmdq_item *item, u_int px, } pd->border_cell.attr = 0; - screen_init(&pd->s, sx - 2, sy - 2, 0); + screen_init(&pd->s, jx, jy, 0); colour_palette_init(&pd->palette); colour_palette_from_option(&pd->palette, global_w_options); -- 2.20.1