Bug 1477290 - Disable flashing with storage inspector endless scrolling. r=miker

MozReview-Commit-ID: GfRaId6B50I

--HG--
extra : rebase_source : 1198866fc88203251dc2914aaab945f1430c4cdd
This commit is contained in:
Tim Nguyen 2018-07-20 16:36:59 +01:00
Родитель f58174c712
Коммит d100a75344
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1038,11 +1038,11 @@ class StorageUI {
switch (reason) {
case REASON.POPULATE:
case REASON.NEXT_50_ITEMS:
// Update without flashing the row.
this.table.push(item, true);
break;
case REASON.NEW_ROW:
case REASON.NEXT_50_ITEMS:
// Update and flash the row.
this.table.push(item, false);
break;