change stuff

This commit is contained in:
griffi-gh 2024-03-07 02:40:11 +01:00
parent 25f947ba31
commit b6cd7567d7
2 changed files with 6 additions and 1 deletions

View file

@ -10,6 +10,7 @@ use crate::{
};
#[derive(Setters)]
#[setters(prefix = "with_")]
pub struct Image {
/// Image handle to draw
#[setters(skip)]

View file

@ -82,15 +82,19 @@ impl From<Alignment> for Alignment2d {
/// (Meaning of `auto` is entirely dependent on the element).
#[derive(Default, Debug, Clone, Copy, PartialEq)]
pub enum Size {
#[default]
/// Automatically calculate size based on content
#[default]
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)
Fraction(f32),
//TODO FractionRemaining(f32),
/// Static size in pixels
Static(f32),
}