add warning
This commit is contained in:
parent
e252a71598
commit
738bb0c6fa
2 changed files with 4 additions and 1 deletions
|
@ -20,7 +20,9 @@ pub struct GridBuilder<'a> {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'a> GridBuilder<'a> {
|
impl<'a> GridBuilder<'a> {
|
||||||
/// Create new grid builder
|
/// Create new grid builder.
|
||||||
|
///
|
||||||
|
/// In contrast to normal egui behavior, cells do *not* grow with its children!
|
||||||
///
|
///
|
||||||
/// After adding size hints with `[Self::column]`/`[Self::columns]` the grid can be build with `[Self::horizontal]`/`[Self::vertical]`.
|
/// After adding size hints with `[Self::column]`/`[Self::columns]` the grid can be build with `[Self::horizontal]`/`[Self::vertical]`.
|
||||||
///
|
///
|
||||||
|
|
|
@ -26,6 +26,7 @@ impl<'a> TableBuilder<'a> {
|
||||||
///
|
///
|
||||||
/// | fixed size | all available space/minimum | 30% of available width | fixed size |
|
/// | fixed size | all available space/minimum | 30% of available width | fixed size |
|
||||||
///
|
///
|
||||||
|
/// In contrast to normal egui behavior, cells do *not* grow with its children!
|
||||||
/// Takes all available height, so if you want something below the table, put it in a grid.
|
/// Takes all available height, so if you want something below the table, put it in a grid.
|
||||||
///
|
///
|
||||||
/// ### Example
|
/// ### Example
|
||||||
|
|
Loading…
Reference in a new issue