From 1d4343b211a6d13d6387a3c5d127884013f9f3a4 Mon Sep 17 00:00:00 2001 From: Peter Flynn Date: Fri, 3 Oct 2014 14:03:19 -0700 Subject: [PATCH] Prevent working set from taking focus on every mousedown - fixes bug #9429 and half of #9414. This is basically just restoring what we were doing before the drag & drop rewrite. --- src/project/WorkingSetView.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/project/WorkingSetView.js b/src/project/WorkingSetView.js index e5e07fb522d..2613804925c 100644 --- a/src/project/WorkingSetView.js +++ b/src/project/WorkingSetView.js @@ -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();