]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiErrorList.cpp
Fix the tab ordering of GuiDocument components.
[lyx.git] / src / frontends / qt4 / GuiErrorList.cpp
index 764717b044ddf3e52e3c257ce0009dc5f28748b6..9924d649a1a7edd532453c4e99d14717322a5943 100644 (file)
@@ -172,15 +172,21 @@ bool GuiErrorList::goTo(int item)
                return false;
        }
 
-       // Don't try to highlight the content of info insets
-       while (dit.inset().lyxCode() == INFO_CODE)
-               dit.forwardPos();
-
-       // If this paragraph is empty, highlight the previous one
-       while (dit.paragraph().empty())
+       // Don't try to highlight the content of non-editable insets
+       while (!dit.inset().editable())
                dit.backwardPos();
 
        // Now make the selection.
+       BufferView * bv = const_cast<BufferView *>(bufferview());
+       if (bv->selectIfEmpty(dit)) {
+               // The paragraph is empty but can be selected
+               bv->processUpdateFlags(Update::Force | Update::FitCursor);
+               return true;
+       }
+       if (dit.empty()) {
+               // The paragraph is empty and cannot be selected
+               return false;
+       }
        // if pos_end is 0, this means it is end-of-paragraph
        pos_type const s = dit.paragraph().size();
        pos_type const end = err.pos_end ? min(err.pos_end, s) : s;
@@ -188,7 +194,6 @@ bool GuiErrorList::goTo(int item)
        pos_type const range = end == start ? s - start : end - start;
        // end-of-paragraph cannot be highlighted, so highlight the last thing
        dit.pos() = range ? start : end - 1;
-       BufferView * bv = const_cast<BufferView *>(bufferview());
        // FIXME LFUN
        // If we used an LFUN, we would not need these lines:
        bv->putSelectionAt(dit, max(range, pos_type(1)), false);