mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 801362 - Fixed typo (>= s/b <=) introduced in bug 797239. r=cjones
This commit is contained in:
parent
5f743adb53
commit
9f2a7cbfe8
@ -337,7 +337,7 @@ void MessageLoop::RunTask(Task* task) {
|
||||
}
|
||||
|
||||
bool MessageLoop::DeferOrRunPendingTask(const PendingTask& pending_task) {
|
||||
if (pending_task.nestable || state_->run_depth >= run_depth_base_) {
|
||||
if (pending_task.nestable || state_->run_depth <= run_depth_base_) {
|
||||
RunTask(pending_task.task);
|
||||
// Show that we ran a task (Note: a new one might arrive as a
|
||||
// consequence!).
|
||||
|
Loading…
Reference in New Issue
Block a user