1
0
Fork 0
forked from wry/wry

control-center: add outputs pane

This commit is contained in:
Julian Orth 2026-03-07 14:04:04 +01:00
parent dee142b3bb
commit d328655f8b
13 changed files with 1775 additions and 36 deletions

View file

@ -6,7 +6,6 @@ use {
egui::{Color32, Rgba},
};
#[expect(dead_code)]
pub trait Color32Ext {
fn to_oklab(self) -> Oklab;
fn to_oklch(self) -> Oklch;

View file

@ -110,7 +110,6 @@ pub enum EggError {
}
pub mod icons {
#[expect(dead_code)]
pub const ICON_ADD: &str = "\u{e145}";
pub const ICON_CLOSE: &str = "\u{e5cd}";
pub const ICON_DRAG_INDICATOR: &str = "\u{e945}";
@ -119,7 +118,6 @@ pub mod icons {
pub const ICON_OPEN_IN_NEW: &str = "\u{e89e}";
#[expect(dead_code)]
pub const ICON_PENDING: &str = "\u{ef64}";
#[expect(dead_code)]
pub const ICON_REMOVE: &str = "\u{e15b}";
}