]> git.lyx.org Git - features.git/commitdiff
Fix another glitch with on-screen indentation.
authorEnrico Forestieri <forenr@lyx.org>
Sat, 24 May 2014 00:12:56 +0000 (02:12 +0200)
committerEnrico Forestieri <forenr@lyx.org>
Sat, 24 May 2014 00:12:56 +0000 (02:12 +0200)
If a new paragraph is created just before a nested environment,
the indentation of the nested environment is not computed
correctly because the parindent of the previous layout would
also be erroneously taken into account. This would cause the
nested environment to move back and forth when something is
added to the new paragraph.

A proper status line covering this change is already present.

src/TextMetrics.cpp

index 9635388e554531fc881f66c22a14186b8989b3a1..96c34aa54b43e563ee8e644f7697e209f4ec1317 100644 (file)
@@ -1892,6 +1892,13 @@ int TextMetrics::leftMargin(int max_width,
                if (newpar != pit_type(pars.size())) {
                        if (pars[newpar].layout().isEnvironment()) {
                                l_margin = leftMargin(max_width, newpar);
+                               // Remove the parindent that has been added
+                               // if the paragraph was empty.
+                               if (pars[newpar].empty()) {
+                                       docstring pi = pars[newpar].layout().parindent;
+                                       l_margin -= theFontMetrics(
+                                               buffer.params().getFont()).signedWidth(pi);
+                               }
                        }
                        if (tclass.isDefaultLayout(par.layout())
                            || tclass.isPlainLayout(par.layout())) {