зеркало из https://github.com/mozilla/gecko-dev.git
Bug 801362 - Fixed typo (>= s/b <=) introduced in bug 797239. r=cjones
This commit is contained in:
Родитель
50bae428b0
Коммит
35f7597dc6
|
@ -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!).
|
||||
|
|
Загрузка…
Ссылка в новой задаче