mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Fixed issue 591. Check library path is relative or absolute.
This commit is contained in:
parent
cae5cf78be
commit
abee16fff0
@ -364,7 +364,10 @@ int SymbolWidget::setSymbol( QString& SymbolString,
|
||||
{
|
||||
//Load the default symbol for the current Qucs library
|
||||
ComponentLibrary parsedlib;
|
||||
QString libpath = QucsSettings.LibDir + Lib_ + ".lib";
|
||||
QString libpath;
|
||||
QString libfile = Lib_ + ".lib";
|
||||
if (QFile::exists(libfile)) libpath = libfile; // User libraries, absolute path
|
||||
else libpath = QucsSettings.LibDir + libfile; // System libraries, relative path
|
||||
int result = parseComponentLibrary (libpath, parsedlib);
|
||||
|
||||
switch (result)//Check if the library was properly loaded
|
||||
|
Loading…
x
Reference in New Issue
Block a user