[DEBUG] need to have a reverse drawing on layer
This commit is contained in:
parent
7ee8ff29bd
commit
a771457d89
@ -167,9 +167,9 @@ void ewol::widget::ContainerN::systemDraw(const ewol::DrawProperty& _displayProp
|
||||
// subwidget draw
|
||||
ewol::DrawProperty prop = _displayProp;
|
||||
prop.limit(m_origin, m_size);
|
||||
for (auto &it : m_subWidget) {
|
||||
if (it != nullptr) {
|
||||
it->systemDraw(prop);
|
||||
for (auto it(m_subWidget.rbegin()); it!=m_subWidget.rend(); ++it) {
|
||||
if (*it != nullptr) {
|
||||
(*it)->systemDraw(prop);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user