fix toml serialiser being stupid
All checks were successful
Trigger quay.io Webhook / run (push) Successful in 5s

This commit is contained in:
Dominic 2024-06-28 16:56:07 +02:00
parent 7662150b89
commit 330515d6b4
Signed by: msrd0
GPG key ID: AAF7C8430CA3345D
5 changed files with 53 additions and 80 deletions

View file

@ -131,8 +131,8 @@ impl Question {
pub(crate) fn finish(self) -> Graphic {
let mut svg = Graphic::new();
svg.set_width(self.res.width);
svg.set_height(self.res.height);
svg.set_width(self.res.width());
svg.set_height(self.res.height());
svg.set_view_box("0 0 1920 1080");
svg.push(self.g);
svg