1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-26 22:53:14 -04:00

Fix typo in docstring for Column::auto_size_this_frame (#5681)

* [x] I have followed the instructions in the PR template
This commit is contained in:
Onè
2025-02-18 12:11:48 -05:00
committed by GitHub
parent 9dad7f827d
commit 264749b8af

View File

@@ -39,7 +39,7 @@ pub struct Column {
resizable: Option<bool>,
/// If set, we should acurately measure the size of this column this frame
/// If set, we should accurately measure the size of this column this frame
/// so that we can correctly auto-size it. This is done as a `sizing_pass`.
auto_size_this_frame: bool,
}