Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
Merge pull request #9433 from adobe/pflynn/workingset-focus
Browse files Browse the repository at this point in the history
Prevent working set from taking focus on every mousedown
  • Loading branch information
JeffryBooher committed Oct 3, 2014
2 parents 0eb8ca3 + 1d4343b commit 6d2d33d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/project/WorkingSetView.js
Original file line number Diff line number Diff line change
Expand Up @@ -765,6 +765,9 @@ define(function (require, exports, module) {
}
}

// prevent working set from grabbing focus no matter what type of click/drag occurs
e.preventDefault();

// initialization
$(window).on("mouseup.wsvdragging", function () {
drop();
Expand Down

0 comments on commit 6d2d33d

Please sign in to comment.