GPU-accelerated UI toolkit (Vulkan)
git clone https://git.lucas.co/cce-ui.git
rename: launch cce-color-editor as the color picker (was cce-colors)
The cce-colors app/repo was renamed to cce-color-editor; update the
ColorSelector spawn command and stream comments to match.
Co-Authored-By: Claude Fable 5 <[email protected]>
src/widget/container/parameters_bg.rs | 2 +-
src/widget/input/color_selector.rs | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/widget/container/parameters_bg.rs b/src/widget/container/parameters_bg.rs
index 8783c31..2b018d7 100644
--- a/src/widget/container/parameters_bg.rs
+++ b/src/widget/container/parameters_bg.rs
@@ -1543,7 +1543,7 @@ impl Input for ParametersBg {
}
}
}
- // Color rows tick their picker-stream poll (`cce-colors --stream`
+ // Color rows tick their picker-stream poll (`cce-color-editor --stream`
// lines applying live) — fold a changed value back into the row so
// hosts syncing off display_params see it while the picker is open.
for i in 0..self.colors.len() {
diff --git a/src/widget/input/color_selector.rs b/src/widget/input/color_selector.rs
index 1f01927..469b7d8 100644
--- a/src/widget/input/color_selector.rs
+++ b/src/widget/input/color_selector.rs
@@ -19,7 +19,7 @@ pub struct ColorSelector {
pub editor_state: TextEditorState,
pub just_changed: bool,
pub with_alpha: bool,
- /// Live color lines from the running picker (`cce-colors --stream` prints
+ /// Live color lines from the running picker (`cce-color-editor --stream` prints
/// every change), forwarded by a reader thread — the value applies while
/// the editor stays open instead of on exit.
live_rx: Option<std::sync::mpsc::Receiver<String>>,
@@ -59,7 +59,7 @@ impl ColorSelector {
edit_buffer: String::new(),
cursor_idx: 0,
font_family: crate::layout::color_selector_font(),
- command: "cce-colors".to_string(),
+ command: "cce-color-editor".to_string(),
hovered: false,
child: std::sync::Arc::new(std::sync::Mutex::new(None)),
editor_state: TextEditorState::new(String::new()),
@@ -79,7 +79,7 @@ impl ColorSelector {
edit_buffer: String::new(),
cursor_idx: 0,
font_family: crate::layout::color_selector_font(),
- command: "cce-colors".to_string(),
+ command: "cce-color-editor".to_string(),
hovered: false,
child: std::sync::Arc::new(std::sync::Mutex::new(None)),
editor_state: TextEditorState::new(String::new()),