change stuff

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

View file

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

View file

@ -82,15 +82,19 @@ impl From<Alignment> for Alignment2d {
/// (Meaning of `auto` is entirely dependent on the element). /// (Meaning of `auto` is entirely dependent on the element).
#[derive(Default, Debug, Clone, Copy, PartialEq)] #[derive(Default, Debug, Clone, Copy, PartialEq)]
pub enum Size { pub enum Size {
#[default]
/// Automatically calculate size based on content /// Automatically calculate size based on content
#[default]
Auto, Auto,
/// Size as a ratio of parent size\ /// Size as a ratio of parent size\
/// Valid range: 0.0-1.0 (0-100%) /// Valid range: 0.0-1.0 (0-100%)
/// ///
/// Out of range values are allowed, but are not guaranteed to work as expected\ /// Out of range values are allowed, but are not guaranteed to work as expected\
/// (especially with negative values) /// (especially with negative values)
Fraction(f32), Fraction(f32),
//TODO FractionRemaining(f32),
/// Static size in pixels /// Static size in pixels
Static(f32), Static(f32),
} }