From a676c78a0598fd725a09f588f57f3bdbdce75f57 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Mon, 28 Jul 2025 11:04:10 +0200 Subject: [PATCH] Remove duplicate center alignment style for equations (#6667) --- crates/typst-library/src/math/equation.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/typst-library/src/math/equation.rs b/crates/typst-library/src/math/equation.rs index 45831f52c..c624c8ad0 100644 --- a/crates/typst-library/src/math/equation.rs +++ b/crates/typst-library/src/math/equation.rs @@ -168,7 +168,6 @@ impl ShowSet for Packed { fn show_set(&self, styles: StyleChain) -> Styles { let mut out = Styles::new(); if self.block.get(styles) { - out.set(AlignElem::alignment, Alignment::CENTER); out.set(AlignElem::alignment, Alignment::CENTER); out.set(BlockElem::breakable, false); out.set(ParLine::numbering, None);