diff options
author | Alexey Yakovenko <wakeroid@gmail.com> | 2010-10-11 22:24:08 +0200 |
---|---|---|
committer | Alexey Yakovenko <wakeroid@gmail.com> | 2010-10-11 22:24:08 +0200 |
commit | de198d341ce71267e133014db7b9c54e1e65dbb1 (patch) | |
tree | db0a577424a25ad6f6aeec0c8b62c293b34df634 /plugins | |
parent | c86b5a7e147f6a07016677d1e7f71addbd75abb7 (diff) |
fixed autoscroll issue when dragging something over the deadbeef window
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/gtkui/ddblistview.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/gtkui/ddblistview.c b/plugins/gtkui/ddblistview.c index 8991e2bc..89a27cff 100644 --- a/plugins/gtkui/ddblistview.c +++ b/plugins/gtkui/ddblistview.c @@ -2023,6 +2023,8 @@ ddb_listview_list_track_dragdrop (DdbListview *ps, int y) { } if (y == -1) { ps->drag_motion_y = -1; + ps->scroll_active = 0; + ps->scroll_direction = 0; return; } int sel = ddb_listview_dragdrop_get_row_from_coord (ps, y); |