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

Commit 1855096

Browse files
committed
Merge pull request #2590 from jbalsas/fix-2306
Fix issue #2306 (Recent projects close arrow fail to close without mouse move)
2 parents 0791f7b + 5b511c0 commit 1855096

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/extensions/default/RecentProjects

src/extensions/default/RecentProjects/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ define(function (require, exports, module) {
104104
*/
105105
function renderDelete() {
106106
return $("<div id='recent-folder-delete' class='trash-icon'></div>")
107-
.click(function (e) {
107+
.mouseup(function (e) {
108108
// Don't let the click bubble upward.
109109
e.stopPropagation();
110110

0 commit comments

Comments
 (0)