Merge pull request #2326 from RetroPooh/hashfinxf

hide hashing status in statusbar after extrafiles done
This commit is contained in:
csoler 2021-02-15 22:05:18 +01:00 committed by GitHub
commit 36b64696a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -257,4 +257,9 @@ void HashBox::checkAttachmentReady()
updateGeometry();
emit fileHashingFinished(hashedFiles);
auto ev = std::make_shared<RsSharedDirectoriesEvent>();
ev->mEventCode = RsSharedDirectoriesEventCode::DIRECTORY_SWEEP_ENDED;
if(rsEvents)
rsEvents->postEvent(ev);
}