| 54 | } |
| 55 | |
| 56 | void ViewTransactionScope::flushNow(bool sync) { |
| 57 | if (_next != nullptr) { |
| 58 | _next->flushNow(sync); |
| 59 | } |
| 60 | |
| 61 | if (_transaction != nullptr) { |
| 62 | _transaction->flush(sync); |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | void ViewTransactionScope::setLayoutDidBecomeDirty(bool layoutDidBecomeDirty) { |
| 67 | transaction(); |