Skip to content

Commit

Permalink
fixes #12752 - added missing path seperator in GUI library lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
firewave committed Jun 15, 2024
1 parent 59c5e67 commit 3ed5312
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,7 @@ Library::Error MainWindow::loadLibrary(Library &library, const QString &filename
ret = library.load(nullptr, libpath.toLatin1());
if (ret.errorcode != Library::ErrorCode::FILE_NOT_FOUND)
return ret;
libpath = filesdir+filename;
libpath = filesdir+"/"+filename;
qDebug().noquote() << "looking for library '" + libpath + "'";
ret = library.load(nullptr, libpath.toLatin1());
if (ret.errorcode != Library::ErrorCode::FILE_NOT_FOUND)
Expand Down

0 comments on commit 3ed5312

Please sign in to comment.