From e7dec2ab2586680709962436643326bdf023b15e Mon Sep 17 00:00:00 2001 From: bitplane Date: Sat, 22 Dec 2007 01:34:57 +0000 Subject: [PATCH] editbox didn't draw children. git-svn-id: http://svn.code.sf.net/p/irrlicht/code/trunk@1123 dfc29bdd-3216-0410-991c-e03cc46cb475 --- source/Irrlicht/CGUIEditBox.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/Irrlicht/CGUIEditBox.cpp b/source/Irrlicht/CGUIEditBox.cpp index 7fe7ce8a..7a0ea7c5 100644 --- a/source/Irrlicht/CGUIEditBox.cpp +++ b/source/Irrlicht/CGUIEditBox.cpp @@ -825,6 +825,9 @@ void CGUIEditBox::draw() false, true, &localClipRect); } } + + // draw children + IGUIElement::draw(); }