This commit is contained in:
2025-03-18 17:29:19 +01:00
parent 6fd17fbdf5
commit fe3e5f66be
3 changed files with 16 additions and 7 deletions
+1 -1
View File
@@ -86,7 +86,7 @@ bool ScriptEngine::isMarked(const File *file)
{
bool ret;
QString path = file->absoluteFilePath();
QMetaObject::invokeMethod(_database, [this, path](){ _database->isMarked(path); }, Qt::BlockingQueuedConnection, &ret);
QMetaObject::invokeMethod(_database, [this, path](){ return _database->isMarked(path); }, Qt::BlockingQueuedConnection, &ret);
return ret;
}