All tests pass.

This commit is contained in:
Samuel Guerra 2024-02-21 00:26:18 -03:00
parent b343305185
commit 001a205a9a
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@
//! child = Button! {
//! layout::align = layout::Align::TOP;
//! on_click = hn!(|_|{
//! let mut c = color.get().to_hsla();
//! let mut c = color::Hsla::from(color.get());
//! c.hue += 60.0;
//! color.set(c);
//! });