From 837560c53648f447e771b1c18449dc7ee74c6923 Mon Sep 17 00:00:00 2001 From: Andrzej Rybczak Date: Sun, 2 Aug 2009 09:44:24 +0200 Subject: [PATCH] do not show messages if statusbar unlock is not allowed --- src/status.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/status.cpp b/src/status.cpp index 7d7d10d8..3b3b93fd 100644 --- a/src/status.cpp +++ b/src/status.cpp @@ -538,7 +538,7 @@ Window &Statusbar() void ShowMessage(const char *format, ...) { - if (MessagesAllowed) + if (MessagesAllowed && allow_statusbar_unlock) { time(&time_of_statusbar_lock); lock_statusbar_delay = Config.message_delay_time;