mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
Fix thinko in r21047
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21589 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
0ee7c6e283
commit
12aa33ff01
@ -766,7 +766,7 @@ docstring const GuiGraphics::browse(docstring const & in_name) const
|
||||
FileName clip(clipdir);
|
||||
|
||||
// bail out to system clipart directory
|
||||
if (!clip.exists() && clip.isDirectory())
|
||||
if (!(clip.exists() && clip.isDirectory()))
|
||||
clipdir = addName(package().system_support().absFilename(), "clipart");
|
||||
|
||||
return browseRelFile(in_name, from_utf8(bufferFilepath()),
|
||||
|
Loading…
Reference in New Issue
Block a user