Skip to content

Commit

Permalink
change ctrl key to shift key.
Browse files Browse the repository at this point in the history
  • Loading branch information
eroamane authored May 8, 2020
1 parent 3553cba commit c077fc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/yaaw.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ var YAAW = (function() {
$("[rel=tooltip]").tooltip({"placement": "bottom"});

$(".task .select-box").live("click", function(e) {
if (!e.ctrlKey) {
if (!e.shiftKey) {
YAAW.tasks.toggle($(this).parents(".task"));
selected_range_start = $(this).parents(".task").hasClass("selected") ? $(this).parents(".task")[0] : null;
selected_range_close = null;
Expand Down

0 comments on commit c077fc8

Please sign in to comment.