]> git.lyx.org Git - lyx.git/blobdiff - src/Row.cpp
Limit the nopassthurchars case in beamer to URL
[lyx.git] / src / Row.cpp
index 687d9ec88415277630589d3ada325195196a49c7..b85ef3d18b05bfb853efe9ddd911c33ac9dcec89 100644 (file)
@@ -425,6 +425,7 @@ bool Row::sameString(Font const & f, Change const & ch) const
 }
 
 
+// FIXME: remove this and move the changebar update to Row::push_back()
 void Row::finalizeLast()
 {
        if (elements_.empty())
@@ -509,15 +510,14 @@ void Row::addMarginSpace(pos_type const pos, int const width,
 
 void Row::push_back(Row::Element const & e)
 {
-       dim_.wid += e.dim.wid + ((e.type == INSET) ? e.extra : 0);
+       dim_.wid += e.dim.wid;
        elements_.push_back(e);
 }
 
 
 void Row::pop_back()
 {
-       Element const & e = elements_.back();
-       dim_.wid -= e.dim.wid + ((e.type == INSET) ? e.extra : 0);
+       dim_.wid -= elements_.back().dim.wid;
        elements_.pop_back();
 }
 
@@ -604,14 +604,6 @@ Row::Elements Row::shortenIfNeeded(int const max_width, int const next_width)
                 */
                int const split_width =  min(max_width - wid_brk, brk.dim.wid - 2);
                if (brk.splitAt(split_width, next_width, BEST_EFFORT, tail)) {
-                       // if we did not manage to fit a part of the element into
-                       // the split_width limit, at least remember that we can
-                       // shorten the row if needed.
-                       if (brk.dim.wid > split_width) {
-                               min_row_wid = wid_brk + brk.dim.wid;
-                               tail.clear();
-                               continue;
-                       }
                        /* if this element originally did not cause a row overflow
                         * in itself, and the remainder of the row would still be
                         * too large after breaking, then we will have issues in
@@ -622,6 +614,15 @@ Row::Elements Row::shortenIfNeeded(int const max_width, int const next_width)
                                tail.clear();
                                break;
                        }
+                       /* if we did not manage to fit a part of the element into
+                        * the split_width limit, at least remember that we can
+                        * shorten the row if needed.
+                        */
+                       if (brk.dim.wid > split_width) {
+                               min_row_wid = wid_brk + brk.dim.wid;
+                               tail.clear();
+                               continue;
+                       }
                        // We have found a proper place where to break this string element.
                        end_ = brk.endpos;
                        *cit_brk = brk;