From 8d8dadd2b17411fb97d22bdefbd85119cd4763ea Mon Sep 17 00:00:00 2001 From: unK Date: Thu, 28 Aug 2008 22:44:16 +0200 Subject: [PATCH] update status while scrolling on media library screen --- src/ncmpcpp.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ncmpcpp.cpp b/src/ncmpcpp.cpp index 2a625d70..2baad145 100644 --- a/src/ncmpcpp.cpp +++ b/src/ncmpcpp.cpp @@ -526,6 +526,7 @@ int main(int argc, char *argv[]) wCurrent->Timeout(50); while (Keypressed(input, Key.Up)) { + TraceMpdStatus(); wCurrent->Go(UP); wCurrent->Refresh(); wCurrent->ReadKey(input); @@ -542,6 +543,7 @@ int main(int argc, char *argv[]) wCurrent->Timeout(50); while (Keypressed(input, Key.Down)) { + TraceMpdStatus(); wCurrent->Go(DOWN); wCurrent->Refresh(); wCurrent->ReadKey(input);