Mercurial > audlegacy
diff src/audacious/ui_skinned_playlist.c @ 3365:b4ff4ef0211f trunk
make queue on click on playlist with GDK_MOD1_MASK working again
| author | Tomasz Mon <desowin@gmail.com> |
|---|---|
| date | Sun, 19 Aug 2007 10:21:56 +0200 |
| parents | 612007382f0c |
| children | dbca6c49bdff |
line wrap: on
line diff
--- a/src/audacious/ui_skinned_playlist.c Sat Aug 18 14:18:26 2007 -0500 +++ b/src/audacious/ui_skinned_playlist.c Sun Aug 19 10:21:56 2007 +0200 @@ -821,6 +821,9 @@ if (!(event->state & GDK_CONTROL_MASK)) playlist_select_all(playlist, FALSE); + if ((event->state & GDK_MOD1_MASK)) + playlist_queue_position(playlist, nr); + if (event->state & GDK_SHIFT_MASK && pl->prev_selected != -1) { playlist_select_range(playlist, pl->prev_selected, nr, TRUE); pl->prev_min = pl->prev_selected;
