fix: write spacing and corner_radii when writing the theme

This commit is contained in:
Ashley Wulber 2023-08-04 15:44:18 -04:00 committed by Ashley Wulber
parent 2dfa9dab5a
commit 68225c78cd

View file

@ -67,6 +67,8 @@ impl CosmicConfigEntry for Theme<Srgba> {
tx.set("palette", self_.palette)?;
tx.set("is_dark", self_.is_dark)?;
tx.set("is_high_contrast", self_.is_high_contrast)?;
tx.set("spacing", self_.spacing)?;
tx.set("corner_radii", self_.corner_radii)?;
tx.commit()
}