diff --git a/NEWS b/NEWS index d5cb3b0b..3a3958c3 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,7 @@ ncmpcpp-0.6.2 (????-??-??) * Delete key now aditionally binds by default to action that deletes files in browser. +* Fix incremental seeking so that it doesn't reset after 30 seconds. ncmpcpp-0.6.1 (2014-11-06) diff --git a/src/actions.cpp b/src/actions.cpp index a1c9c678..16a10448 100644 --- a/src/actions.cpp +++ b/src/actions.cpp @@ -2732,7 +2732,7 @@ void seek() Status::trace(); unsigned howmuch = Config.incremental_seeking - ? (Timer-t).seconds()/2+Config.seek_time + ? (Timer-t).total_seconds()/2+Config.seek_time : Config.seek_time; Key input = Key::read(*wFooter);