зеркало из https://github.com/mozilla/pjs.git
Bug 424395 - Ignore invalidation if the view observer has been disconnected. r=roc
This commit is contained in:
Родитель
d01ef7f08f
Коммит
4c14ca1f92
|
@ -634,7 +634,7 @@ ShouldIgnoreInvalidation(nsViewManager* aVM)
|
||||||
{
|
{
|
||||||
while (aVM) {
|
while (aVM) {
|
||||||
nsIViewObserver* vo = aVM->GetViewObserver();
|
nsIViewObserver* vo = aVM->GetViewObserver();
|
||||||
if (vo && vo->ShouldIgnoreInvalidation()) {
|
if (!vo || vo->ShouldIgnoreInvalidation()) {
|
||||||
return PR_TRUE;
|
return PR_TRUE;
|
||||||
}
|
}
|
||||||
nsView* view = aVM->GetRootViewImpl()->GetParent();
|
nsView* view = aVM->GetRootViewImpl()->GetParent();
|
||||||
|
|
Загрузка…
Ссылка в новой задаче