From 1017bf42e0408e1a7c7060355848423495f90bc8 Mon Sep 17 00:00:00 2001 From: nick black Date: Tue, 24 Dec 2019 00:46:55 -0500 Subject: [PATCH] panelreeldemo: stop advertising 'q' --- src/demo/panelreel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/demo/panelreel.c b/src/demo/panelreel.c index 1fdc29737..8f1eaec08 100644 --- a/src/demo/panelreel.c +++ b/src/demo/panelreel.c @@ -284,12 +284,12 @@ panelreel_demo_core(struct notcurses* nc, int efd, tabletctx** tctxs){ return NULL; } // Press a for a new panel above the current, c for a new one below the - // current, and b for a new block at arbitrary placement. q quits. + // current, and b for a new block at arbitrary placement. ncplane_styles_on(w, CELL_STYLE_BOLD | CELL_STYLE_ITALIC); ncplane_set_fg_rgb(w, 58, 150, 221); ncplane_set_bg_default(w); ncplane_cursor_move_yx(w, 1, 1); - ncplane_printf(w, "a, b, c create tablets, DEL deletes, q quits."); + ncplane_printf(w, "a, b, c create tablets, DEL deletes."); ncplane_styles_off(w, CELL_STYLE_BOLD | CELL_STYLE_ITALIC); // FIXME clrtoeol(); unsigned id = 0;