]> git.lyx.org Git - features.git/blobdiff - src/insets/InsetGraphics.cpp
Revert 23899 and introduce the correct fix.
[features.git] / src / insets / InsetGraphics.cpp
index de06ea498383da131923dfa1d25691b3b4537e36..0953912cf970e013586565a1d8ccaf50cef3e333 100644 (file)
@@ -175,12 +175,9 @@ void InsetGraphics::doDispatch(Cursor & cur, FuncRequest & cmd)
 {
        switch (cmd.action) {
        case LFUN_GRAPHICS_EDIT: {
-               // use buffer() from cursor because this inset may not
-               // have an initialized buffer_.
-               Buffer const & buf = cur.bv().buffer();
                InsetGraphicsParams p;
-               InsetGraphicsMailer::string2params(to_utf8(cmd.argument()), buf, p);
-               editGraphics(p, buf);
+               InsetGraphicsMailer::string2params(to_utf8(cmd.argument()), buffer(), p);
+               editGraphics(p, buffer());
                break;
        }