Closed rydb closed 5 months ago
I discovered in https://github.com/rerun-io/egui_tiles/issues/69
that the window of a tree ui does not fully fit inside the window by default. This pr fixes that issue by adding
ui.allocate_space(ui.available_size());
to the end of tree.ui().
tree.ui()
needs cargo fmt
cargo fmt
done
I discovered in https://github.com/rerun-io/egui_tiles/issues/69
that the window of a tree ui does not fully fit inside the window by default. This pr fixes that issue by adding
to the end of
tree.ui()
.