From e2003aee3e89ce02499fc943248fe57e0dff817f Mon Sep 17 00:00:00 2001 From: Andrzej Rybczak Date: Fri, 4 Sep 2009 08:35:18 +0200 Subject: [PATCH] fix scrolling with fancy_scrolling disabled timeout was too low to keep ncmpcpp in while loop. --- src/screen.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/screen.h b/src/screen.h index 7ff06da3..faadf5e3 100644 --- a/src/screen.h +++ b/src/screen.h @@ -120,7 +120,7 @@ template void Screen::Scroll(Where where, cons if (!Config.fancy_scrolling && key) { int in = key[0]; - w->SetTimeout(ncmpcpp_window_timeout/10); + w->SetTimeout(50); while (Keypressed(in, key)) { TraceMpdStatus();