| Index: chrome/browser/resources/downloads/downloads.js
|
| diff --git a/chrome/browser/resources/downloads/downloads.js b/chrome/browser/resources/downloads/downloads.js
|
| index 53a147e13967d7eb4f81f5e9c73ed1c0ee2bae7c..6d5f3114651f44b48bf59020543e01e8ae20886d 100644
|
| --- a/chrome/browser/resources/downloads/downloads.js
|
| +++ b/chrome/browser/resources/downloads/downloads.js
|
| @@ -511,7 +511,7 @@ Download.prototype.update = function(download) {
|
| showInline(this.controlRetry_, download.retry);
|
| 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_, download.resume);
|
| var showCancel = this.state_ == Download.States.IN_PROGRESS ||
|
| this.state_ == Download.States.PAUSED;
|
| showInline(this.controlCancel_, showCancel);
|
|
|