1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-07-31 11:20:22 +02:00

Fix missing call to postOps after file scans

This commit is contained in:
Jeff Mitchell
2012-06-30 16:58:25 -04:00
parent ba54b5ce8e
commit 1a333d85d6

View File

@@ -209,6 +209,8 @@ MusicScanner::scanFilePaths()
if ( fi.exists() && fi.isReadable() )
scanFile( fi );
}
QMetaObject::invokeMethod( this, "postOps", Qt::QueuedConnection );
}