avoid double pushes

This commit is contained in:
Marco Martin 2012-01-26 21:59:20 +01:00
parent e4a9aa1deb
commit 0dfbaa1525

View File

@ -147,6 +147,9 @@ Item {
// Returns the page instance that was popped off the stack.
function pop(page, immediate)
{
if (busy) {
return
}
return Engine.pop(page, immediate);
}