commit 1a2c9044d7d98a79d55e5657aa1df07a3782057c
parent 9a67d7958fdf751f4a7ea582575bd467eefffc4f
Author: Benno Schulenberg <bensberg@telfort.nl>
Date: Fri, 3 Apr 2020 16:34:27 +0200
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.
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git 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;