Skip to content

Commit

Permalink
fix right click on folder should not toggle
Browse files Browse the repository at this point in the history
  • Loading branch information
alice0775 committed Mar 19, 2021
1 parent 1d4d86b commit 1468e09
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions 78/AutoCloseBookMarkFolder_Fx37.uc.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
// @author original Ronny Perinke
// @version original Autoclose Bookmark History Folders 0.5.5
// @modiffied Alice0775
// @version 2021/03/20 fix right click on folder should not toggle
// @version 2020/12/13 fix scroll position
// @version 2020/12/12 remove prefs and simplify
// @version 2019/12/11 fix for 73 Bug 1601094 - Rename remaining .xul files to .xhtml in browser
Expand Down Expand Up @@ -123,6 +124,9 @@ var acBookMarkTreeFolder = {
onClick: function(aEvent){
var parents = new Array();
var aView = this._BTree.view;
if (aEvent.button != 0){
return;
}

let cell = this._BTree.getCellAt(aEvent.clientX, aEvent.clientY);
if (cell.row == -1)
Expand Down

0 comments on commit 1468e09

Please sign in to comment.