From 68f5ea711eb7030229c23db50eef6e381f9c20de Mon Sep 17 00:00:00 2001 From: nick black Date: Mon, 28 Dec 2020 00:46:30 -0500 Subject: [PATCH] demo: move HUD over by 2, don't block legend --- src/demo/hud.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/demo/hud.c b/src/demo/hud.c index c6e64d001..4e917e1b0 100644 --- a/src/demo/hud.c +++ b/src/demo/hud.c @@ -396,7 +396,7 @@ struct ncplane* hud_create(struct notcurses* nc){ int yoffset = dimy - HUD_ROWS; struct ncplane_options nopts = { .y = yoffset, - .x = 7, + .x = 9, .rows = HUD_ROWS, .cols = HUD_COLS, .userptr = NULL,