Guillaume Munch wrote: > diff --git a/src/frontends/qt4/GuiApplication.cpp > b/src/frontends/qt4/GuiApplication.cpp > index 6fb5499..0170778 100644 > --- a/src/frontends/qt4/GuiApplication.cpp > +++ b/src/frontends/qt4/GuiApplication.cpp > @@ -232,9 +232,11 @@ vector<string> loadableImageFormats() > LYXERR(Debug::GRAPHICS, (const char *) *it << ", "); > > string ext = ascii_lowercase((const char *) *it); > - // special case > + // special cases > if (ext == "jpeg") > ext = "jpg";
+ //svg does not render properly under Qt > + if (ext == "svg") > + continue; > fmts.push_back(ext); > } >