From 1a2c9044d7d98a79d55e5657aa1df07a3782057c Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Fri, 3 Apr 2020 16:34:27 +0200 Subject: [PATCH] display: blank the status bar for a copy operation, like for cut & paste This way an earlier "Copied nothing" or other message cannot confuse the user. --- src/cut.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/cut.c b/src/cut.c index 6c80e081..23be789c 100644 --- a/src/cut.c +++ b/src/cut.c @@ -577,6 +577,8 @@ void copy_text(void) cutbuffer = NULL; } + wipe_statusbar(); + if (openfile->mark) { copy_marked_region(); return;