summaryrefslogtreecommitdiffstats
path: root/application/basilisk
diff options
context:
space:
mode:
authorMoonchild <mcwerewolf@gmail.com>2018-06-24 14:12:10 +0200
committerGitHub <noreply@github.com>2018-06-24 14:12:10 +0200
commitbc0df4c3a545aa2373dd4fc90707d21c2bf852c1 (patch)
tree83d88c74f4494d1ff70e34c892abe9c52e4e193c /application/basilisk
parent364a399fc1157f73b8a29039a9e7f8d8b7028df5 (diff)
parent491fc99b92df22595ab6667bb9de0de989f58ab1 (diff)
downloadUXP-bc0df4c3a545aa2373dd4fc90707d21c2bf852c1.tar
UXP-bc0df4c3a545aa2373dd4fc90707d21c2bf852c1.tar.gz
UXP-bc0df4c3a545aa2373dd4fc90707d21c2bf852c1.tar.lz
UXP-bc0df4c3a545aa2373dd4fc90707d21c2bf852c1.tar.xz
UXP-bc0df4c3a545aa2373dd4fc90707d21c2bf852c1.zip
Merge pull request #543 from janekptacijarabaci/cookies_logins_1
Preferences - Cookies / Saved Passwords - "Remove..." button should not be active if there are no items; "onselect" is not fired twice
Diffstat (limited to 'application/basilisk')
-rw-r--r--application/basilisk/components/preferences/cookies.js8
1 files changed, 6 insertions, 2 deletions
diff --git a/application/basilisk/components/preferences/cookies.js b/application/basilisk/components/preferences/cookies.js
index 921eee4c0..c420855f8 100644
--- a/application/basilisk/components/preferences/cookies.js
+++ b/application/basilisk/components/preferences/cookies.js
@@ -565,6 +565,8 @@ var gCookiesWindow = {
onCookieSelected: function () {
var item;
var seln = this._tree.view.selection;
+ var hasRows = this._tree.view.rowCount > 0;
+ var hasSelection = seln.count > 0;
if (!this._view._filtered)
item = this._view._getItemAtIndex(seln.currentIndex);
else
@@ -592,7 +594,7 @@ var gCookiesWindow = {
removeSelectedCookies.label = PluralForm.get(selectedCookieCount, buttonLabel)
.replace("#1", selectedCookieCount);
- removeSelectedCookies.disabled = !(seln.count > 0);
+ removeSelectedCookies.disabled = !hasRows || !hasSelection;
},
performDeletion: function gCookiesWindow_performDeletion(deleteItems) {
@@ -806,7 +808,9 @@ var gCookiesWindow = {
this._view._invalidateCache(0);
this._view.selection.clearSelection();
- this._view.selection.select(0);
+ if (this._view.rowCount > 0) {
+ this._view.selection.select(0);
+ }
this._tree.treeBoxObject.invalidate();
this._tree.treeBoxObject.ensureRowIsVisible(0);