A simple CPU rendered GUI IDE experience.
Diffstat (limited to 'src/sig.rs')
| -rw-r--r-- | src/sig.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ pub fn sig( c: usize, ) -> Vec<Cell> { let bg = color_("#1c212b"); - let ds: Style = Style { bg: bg, color: FG, flags: 0 }; + let ds = Style::new(FG, bg); let d: Cell = Cell { letter: None, style: ds }; let sig = y.label.chars().zip(0..).map(|(x, i)| { let mut a = ds.basic(x); |