Bug 1269957 - Change the number of maximum download items displayed r?mconley draft 1269957_change_the_number
authoryifan <yliao@mozilla.com>
Wed, 11 May 2016 10:57:19 +0800
branch1269957_change_the_number
changeset 365651 35b58b49a2be1cdeb5bf028c378c469bbf911e5b
parent 364815 043082cb7bd8490c60815f67fbd1f33323ad7663
child 724552 393c566e8b4e74a21993281d45343ae465c21b54
push id17811
push useryliao@mozilla.com
push dateWed, 11 May 2016 07:10:37 +0000
reviewersmconley
bugs1269957
milestone49.0a1
Bug 1269957 - Change the number of maximum download items displayed r?mconley Change the maximum number of downloads displayed in the downloads panel to 5. MozReview-Commit-ID: KwWHLShGqjx
browser/components/downloads/content/downloads.js
--- a/browser/components/downloads/content/downloads.js
+++ b/browser/components/downloads/content/downloads.js
@@ -665,17 +665,17 @@ XPCOMUtils.defineConstant(this, "Downloa
  */
 const DownloadsView = {
   //////////////////////////////////////////////////////////////////////////////
   //// Functions handling download items in the list
 
   /**
    * Maximum number of items shown by the list at any given time.
    */
-  kItemCountLimit: 3,
+  kItemCountLimit: 5,
 
   /**
    * Indicates whether we are still loading downloads data asynchronously.
    */
   loading: false,
 
   /**
    * Ordered array of all Download objects.  We need to keep this array because