commit 25e9877607dad7e8498e8138855af7601b0502ec
parent c524fbe6d058a488520f306ef2e614a11a6d3780
Author: Brand Huntsman <alpha@qzx.com>
Date: Mon, 27 Aug 2018 03:31:56 -0600
statusbar: elevate three messages to an ALERT, to make them more visible
Signed-off-by: Brand Huntsman <alpha@qzx.com>
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/winio.c b/src/winio.c
@@ -2154,8 +2154,7 @@ void statusbar(const char *msg)
* message can be noticed and read. */
void warn_and_shortly_pause(const char *msg)
{
- statusbar(msg);
- beep();
+ statusline(ALERT, msg);
napms(1800);
}