mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-28 07:47:03 -05:00
fix: Store hanging when updating all entries in some cases
This commit is contained in:
@@ -207,8 +207,8 @@ namespace hex::plugin::builtin {
|
||||
|
||||
m_download.wait();
|
||||
|
||||
while (m_download.valid()) {
|
||||
std::this_thread::sleep_for(10ms);
|
||||
while (m_download.wait_for(100ms) != std::future_status::ready) {
|
||||
task.update();
|
||||
}
|
||||
|
||||
task.increment();
|
||||
|
||||
Reference in New Issue
Block a user