Hold Shift to not deselect videos after setting a state.

This commit is contained in:
voussoir 2020-03-11 14:30:56 -07:00
parent 26328865e1
commit 672abf9d86

View file

@ -335,7 +335,10 @@ function action_button_passthrough(event, action_function, action_argument)
{ {
action_function(video_ids, action_argument, receive_action_response); action_function(video_ids, action_argument, receive_action_response);
} }
deselect_all(); if (! event.shiftKey)
{
deselect_all();
}
} }
function give_action_buttons(video_card_div) function give_action_buttons(video_card_div)