From d3c81eb2cbdf1c233042c35fe493cc789cc93647 Mon Sep 17 00:00:00 2001 From: Thibaut Cuvelier Date: Sun, 8 Jan 2023 00:51:43 +0100 Subject: [PATCH] InsetMathBox: fix strange indentation (mix of spaces and tabs). --- src/mathed/InsetMathBox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mathed/InsetMathBox.cpp b/src/mathed/InsetMathBox.cpp index a10ede1a14..f3ba7a7cb5 100644 --- a/src/mathed/InsetMathBox.cpp +++ b/src/mathed/InsetMathBox.cpp @@ -403,7 +403,7 @@ void InsetMathBoxed::htmlize(HtmlStream & ms) const { ms << MTag("span", "class='boxed'") << cell(0) - << ETag("span"); + << ETag("span"); } -- 2.39.5