Commit 3cb40a76 authored by hybrid's avatar hybrid

Merged from 1.5 branch to trunk, all changes from 2121 to 2136. Message box bug fixed.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@2137 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 3f17c5f0
...@@ -295,8 +295,8 @@ bool CGUIMessageBox::OnEvent(const SEvent& event) ...@@ -295,8 +295,8 @@ bool CGUIMessageBox::OnEvent(const SEvent& event)
{ {
// cancel press // cancel press
if (OkButton) OkButton->setPressed(false); if (OkButton) OkButton->setPressed(false);
if (YesButton) OkButton->setPressed(false); if (YesButton) YesButton->setPressed(false);
if (NoButton) OkButton->setPressed(false); if (NoButton) NoButton->setPressed(false);
Pressed = false; Pressed = false;
} }
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment