mirror of
https://github.com/griffi-gh/hUI.git
synced 2024-11-21 22:58:42 -06:00
rearrange stuff
This commit is contained in:
parent
bf0b4dcdf2
commit
535a56a257
|
@ -86,17 +86,15 @@ pub enum Size {
|
||||||
#[default]
|
#[default]
|
||||||
Auto,
|
Auto,
|
||||||
|
|
||||||
/// Size as a ratio of parent size\
|
|
||||||
/// Valid range: 0.0-1.0 (0-100%)
|
|
||||||
///
|
|
||||||
/// Out of range values are allowed, but are not guaranteed to work as expected\
|
|
||||||
/// (especially with negative values)
|
|
||||||
Relative(f32),
|
|
||||||
|
|
||||||
//TODO FractionRemaining(f32),
|
|
||||||
|
|
||||||
/// Static size in pixels
|
/// Static size in pixels
|
||||||
Absolute(f32),
|
Absolute(f32),
|
||||||
|
|
||||||
|
/// Size as a ratio of parent element size
|
||||||
|
///
|
||||||
|
/// Expected range: `0.0..=1.0`
|
||||||
|
Relative(f32),
|
||||||
|
|
||||||
|
//TODO Remaining(f32)
|
||||||
}
|
}
|
||||||
|
|
||||||
impl From<f32> for Size {
|
impl From<f32> for Size {
|
||||||
|
|
Loading…
Reference in a new issue