WIP: Icons not yet rendering

This commit is contained in:
Nathan Sobo 2023-09-05 16:40:52 -06:00
parent 6cb9cf70b7
commit 85aedf9bed
8 changed files with 126 additions and 29 deletions

View file

@ -1291,9 +1291,6 @@ impl<'a> WindowContext<'a> {
pub fn push_text_style(&mut self, refinement: &TextStyleRefinement) -> Result<()> {
let mut style = self.text_style();
style.refine(refinement, self.font_cache())?;
dbg!(&style);
self.window.text_style_stack.push(style);
Ok(())
}