Merge pull request #395 from mahkoh/jorth/subsurface-rendering-order
render: fix sub-surface order
This commit is contained in:
commit
953c36a0fb
1 changed files with 1 additions and 1 deletions
|
|
@ -386,7 +386,7 @@ impl Renderer<'_> {
|
|||
if let Some(children) = children.deref() {
|
||||
macro_rules! render {
|
||||
($children:expr) => {
|
||||
for child in $children.rev_iter() {
|
||||
for child in $children.iter() {
|
||||
if child.pending.get() {
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue