зеркало из https://github.com/mozilla/pjs.git
fix for bug #6569
This commit is contained in:
Родитель
e034619875
Коммит
f55af801ff
|
@ -872,10 +872,11 @@ BOOL CWizardMachineApp::GoToNextNode()
|
|||
if (IsNewValue)
|
||||
CreateNewCache();
|
||||
|
||||
if (!theInterpreter->interpret(tempNode->navControls->onEnter, NULL))
|
||||
CurrentNode = tempNode;
|
||||
|
||||
if (!theInterpreter->interpret(CurrentNode->navControls->onEnter, NULL))
|
||||
return FALSE;
|
||||
|
||||
CurrentNode = tempNode;
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
@ -966,10 +967,11 @@ BOOL CWizardMachineApp::GoToPrevNode()
|
|||
|
||||
if (IsNewValue)
|
||||
CreateNewCache();
|
||||
if (!theInterpreter->interpret(tempNode->navControls->onEnter, NULL))
|
||||
return FALSE;
|
||||
CurrentNode = tempNode;
|
||||
|
||||
if (!theInterpreter->interpret(CurrentNode->navControls->onEnter, NULL))
|
||||
return FALSE;
|
||||
|
||||
return TRUE;
|
||||
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче