]> git.lyx.org Git - lyx.git/blobdiff - src/BufferView.cpp
GuiSearch did not work with num. keypad enter
[lyx.git] / src / BufferView.cpp
index 534e3bc2d96f7ad9fcea4c0cff4c15d68ae109d4..065723621b9dee268f23a40121ccc7814eb48085 100644 (file)
@@ -460,8 +460,9 @@ void BufferView::setSearchRequestCache(docstring const & text)
        bool forward;
        bool wrap;
        bool instant;
+       bool onlysel;
        docstring const search = string2find(text, casesensitive, matchword,
-                                            forward, wrap, instant);
+                                            forward, wrap, instant, onlysel);
        theClipboard().setFindBuffer(search);
 }
 
@@ -1648,7 +1649,7 @@ void BufferView::dispatch(FuncRequest const & cmd, DispatchResult & dr)
 
                docstring const data =
                        find2string(searched_string, false, false,
-                                   act == LFUN_WORD_FIND_FORWARD, false, false);
+                                   act == LFUN_WORD_FIND_FORWARD, false, false, false);
                bool found = lyxfind(this, FuncRequest(LFUN_WORD_FIND, data));
                if (found)
                        dr.screenUpdate(Update::Force | Update::FitCursor);