Bug 1262338 (Part 3) - When RemoveFrameRectFilter is finished, mRow should be at mFrameRect.YMost(). r=njn

This commit is contained in:
Seth Fowler 2016-05-25 22:48:29 -07:00
Родитель 030ca494bd
Коммит 7bae22a533
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -418,7 +418,7 @@ protected:
{
uint8_t* rowPtr = mNext.ResetToFirstRow();
if (rowPtr == nullptr) {
mRow = InputSize().height;
mRow = mFrameRect.YMost();
return nullptr;
}
@ -455,7 +455,7 @@ protected:
return Nothing();
});
mRow = InputSize().height;
mRow = mFrameRect.YMost();
return nullptr; // We're done.
}
@ -520,7 +520,7 @@ protected:
return Nothing();
});
mRow = InputSize().height;
mRow = mFrameRect.YMost();
return nullptr; // We're done.
}