diff options
author | Alexey Yakovenko <wakeroid@gmail.com> | 2010-02-07 09:09:31 +0100 |
---|---|---|
committer | Alexey Yakovenko <wakeroid@gmail.com> | 2010-02-07 09:09:31 +0100 |
commit | 629ef78e20cc730d196073631db2bdfdc56be4d0 (patch) | |
tree | f257eac64695cf7f8198eb486b3dafaaa32f1c10 /plugins | |
parent | 894297702e2d65b9e8fae8b02d6b4c36334c72a7 (diff) |
fixed default value for option playlist.scroll.cursorfollowplayback
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/gtkui/gtkplaylist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/gtkui/gtkplaylist.c b/plugins/gtkui/gtkplaylist.c index e5aa4971..868e26a2 100644 --- a/plugins/gtkui/gtkplaylist.c +++ b/plugins/gtkui/gtkplaylist.c @@ -881,7 +881,7 @@ gtkpl_songchanged (gtkplaylist_t *ps, int from, int to) { gtk_range_set_value (GTK_RANGE (ps->scrollbar), to - ps->nvisiblerows/2); } } - if (deadbeef->conf_get_int ("playlist.scroll.cursorfollowplayback", 1)) { + if (deadbeef->conf_get_int ("playlist.scroll.cursorfollowplayback", 0)) { gtkpl_set_cursor (PL_MAIN, to); } } |