Fix misc errors and cleanup after rebases

This commit is contained in:
Adam
2025-09-09 16:53:07 -07:00
parent c994cdeced
commit 4c92c48cc3
25 changed files with 206 additions and 436 deletions
+5
View File
@@ -302,6 +302,7 @@ impl Render for Graphic {
Graphic::RasterGPU(table) => table.to_graphic(),
Graphic::Color(table) => table.to_graphic(),
Graphic::Gradient(table) => table.to_graphic(),
Graphic::Typography(table) => table.to_graphic(),
}
}
@@ -1696,6 +1697,10 @@ impl Render for Table<Typography> {
}
}
}
fn to_graphic(self) -> Graphic {
Graphic::Typography(self)
}
}
#[derive(Debug, Clone, PartialEq, Eq)]