From f69a0eea588f1e269d8a233592abc03aae146f29 Mon Sep 17 00:00:00 2001 From: nick black Date: Tue, 27 Jul 2021 00:47:36 -0400 Subject: [PATCH] notcurses-info: line up logo/url with right --- src/info/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/info/main.c b/src/info/main.c index acc381f36..00e3b22f1 100644 --- a/src/info/main.c +++ b/src/info/main.c @@ -281,7 +281,7 @@ unicodedumper(struct ncplane* n, const char* indent){ ncplane_set_fg_rgb(n, 0x00c0c0); ncplane_set_styles(n, NCSTYLE_BOLD); - ncplane_cursor_move_yx(n, y - 11, 52); + ncplane_cursor_move_yx(n, y - 11, 54); wviz(n, L"🯁🯂🯃https://notcurses.com"); ncplane_set_fg_default(n); ncplane_set_styles(n, NCSTYLE_NONE); @@ -307,7 +307,7 @@ display_logo(struct ncplane* n, const char* path){ struct ncvisual_options vopts = { .n = n, .y = y - 3, - .x = 53, + .x = 54, .blitter = NCBLIT_PIXEL, .flags = NCVISUAL_OPTION_CHILDPLANE, };