| Index: chrome/browser/resources/downloads/downloads.js
|
| diff --git a/chrome/browser/resources/downloads/downloads.js b/chrome/browser/resources/downloads/downloads.js
|
| index 3f96887e1f41bcc816028732182ad277bb0756f3..61b4d30710a99b477587f9fe7054901f742d5004 100644
|
| --- a/chrome/browser/resources/downloads/downloads.js
|
| +++ b/chrome/browser/resources/downloads/downloads.js
|
| @@ -502,9 +502,12 @@ Download.prototype.update = function(download) {
|
| showInline(this.controlRetry_, this.state_ == Download.States.CANCELLED);
|
| this.controlRetry_.href = this.url_;
|
| showInline(this.controlPause_, this.state_ == Download.States.IN_PROGRESS);
|
| - showInline(this.controlResume_, this.state_ == Download.States.PAUSED);
|
| + showInline(this.controlResume_,
|
| + this.state_ == Download.States.PAUSED ||
|
| + this.state_ == Download.States.INTERRUPTED);
|
| var showCancel = this.state_ == Download.States.IN_PROGRESS ||
|
| - this.state_ == Download.States.PAUSED;
|
| + this.state_ == Download.States.PAUSED ||
|
| + this.state_ == Download.States.INTERRUPTED;
|
| showInline(this.controlCancel_, showCancel);
|
| showInline(this.controlRemove_, !showCancel);
|
|
|
|
|