git.lucas.co / cce-ui
GPU-accelerated UI toolkit (Vulkan)
git clone https://git.lucas.co/cce-ui.git

commit0e984e17405c83e29eb035b12a42e0be58d1ec11
parente2f49441d0
authorLucas Galante <[email protected]>
date2026-06-03 12:37
Make ColorSelector.editing public to allow other layout applications to query hover/focus states

 src/widget.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/widget.rs b/src/widget.rs
index 5674ff2..da1905d 100644
--- a/src/widget.rs
+++ b/src/widget.rs
@@ -5409,7 +5409,7 @@ pub struct ColorSelector {
     base: WidgetBase,
     pub color: [u8; 3],
     just_clicked: bool,
-    editing: bool,
+    pub editing: bool,
     edit_buffer: String,
     pub command: String,
     pub parent: Option<*mut (dyn Widget + 'static)>,