1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-29 21:00:03 -04:00

Make consts pub

This commit is contained in:
Emil Ernerfeldt
2023-01-26 15:00:40 +01:00
parent 9ad5356cfa
commit 8fac6df249
2 changed files with 6 additions and 24 deletions

View File

@@ -71,7 +71,7 @@ impl eframe::App for MyApp {
});
}
let base = ZOrder::base();
let base = ZOrder::BASE;
let above = base.above();
draw_squares(ui, Vec2::new(0.0, 0.0), base, above);