use a more sensible ordering of numbers

This commit is contained in:
Corwin 2022-08-04 21:47:52 +01:00
parent a188e7ba66
commit 7735baecc9

View file

@ -51,8 +51,8 @@ impl Windows {
for (id, win) in self.wins.iter().enumerate() {
win.commit(id);
}
self.obj.commit(3);
self.out.commit(2);
self.obj.commit(3);
}
}