зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1282050 - Fix the updating of download commands in the Library. r=jaws
MozReview-Commit-ID: 7zSMcKe2REi --HG-- extra : rebase_source : a6bcdf4ff3d6d031c0b5438257e485afc6c65430
This commit is contained in:
Родитель
8f83bf2ffc
Коммит
e3a101f136
|
@ -302,8 +302,11 @@ HistoryDownloadElementShell.prototype = {
|
||||||
|
|
||||||
if (this.element.selected) {
|
if (this.element.selected) {
|
||||||
goUpdateDownloadCommands();
|
goUpdateDownloadCommands();
|
||||||
|
} else {
|
||||||
|
// If a state change occurs in an item that is not currently selected,
|
||||||
|
// this is the only command that may be affected.
|
||||||
|
goUpdateCommand("downloadsCmd_clearDownloads");
|
||||||
}
|
}
|
||||||
goUpdateCommand("downloadsCmd_clearDownloads");
|
|
||||||
},
|
},
|
||||||
|
|
||||||
onChanged() {
|
onChanged() {
|
||||||
|
@ -1136,8 +1139,7 @@ DownloadsPlacesView.prototype = {
|
||||||
// nsIController
|
// nsIController
|
||||||
supportsCommand(aCommand) {
|
supportsCommand(aCommand) {
|
||||||
// Firstly, determine if this is a command that we can handle.
|
// Firstly, determine if this is a command that we can handle.
|
||||||
if (!aCommand.startsWith("cmd_") &&
|
if (!DownloadsViewUI.isCommandName(aCommand)) {
|
||||||
!aCommand.startsWith("downloadsCmd_")) {
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (!(aCommand in this) &&
|
if (!(aCommand in this) &&
|
||||||
|
@ -1418,11 +1420,11 @@ for (let methodName of ["load", "applyFilter", "selectNode", "selectItems"]) {
|
||||||
function goUpdateDownloadCommands() {
|
function goUpdateDownloadCommands() {
|
||||||
function updateCommandsForObject(object) {
|
function updateCommandsForObject(object) {
|
||||||
for (let name in object) {
|
for (let name in object) {
|
||||||
if (name.startsWith("cmd_") || name.startsWith("downloadsCmd_")) {
|
if (DownloadsViewUI.isCommandName(name)) {
|
||||||
goUpdateCommand(name);
|
goUpdateCommand(name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
updateCommandsForObject(this);
|
updateCommandsForObject(DownloadsPlacesView.prototype);
|
||||||
updateCommandsForObject(HistoryDownloadElementShell.prototype);
|
updateCommandsForObject(HistoryDownloadElementShell.prototype);
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче