]> git.lyx.org Git - lyx.git/blobdiff - src/Paragraph.cpp
Use isDarkMode() method
[lyx.git] / src / Paragraph.cpp
index 8a634a6b0c9d4fcbaf0293f90156e460988149ba..d5bfb76320e335e0a1e65e285de684e0e7f0f120 100644 (file)
@@ -1136,9 +1136,9 @@ void Paragraph::Private::latexSpecialChar(otexstream & os,
                        if (c == '\\')
                                os << "\\\\";
                        else if (c == '{')
-                               os << "\\braceleft";
+                               os << "\\braceleft ";
                        else if (c == '}')
-                               os << "\\braceright";
+                               os << "\\braceright ";
                        else if (c != '\0')
                                os.put(c);
                }