Bug 623313 - Let text reflow finish before zooming [r=mfinkle]

This commit is contained in:
Matt Brubeck 2011-01-13 17:07:10 -08:00
Родитель c17562aa6b
Коммит b49a1b34d6
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -474,7 +474,9 @@ let Content = {
}
}
}
sendAsyncMessage("Browser:ZoomToPoint:Return", { x: x, y: y, zoomTo: rect });
content.setTimeout(function() {
sendAsyncMessage("Browser:ZoomToPoint:Return", { x: x, y: y, zoomTo: rect });
}, 0);
break;
}