fix: Cached provider invalidation on reload not being done correctly

This commit is contained in:
WerWolv
2026-03-02 10:07:57 +01:00
parent 0cf27b9e9e
commit 04a8bd6798
3 changed files with 9 additions and 2 deletions

View File

@@ -243,12 +243,13 @@ namespace hex::plugin::builtin {
}
prv::Provider::OpenResult CommandProvider::open() {
CachedProvider::open();
m_open = true;
return {};
}
void CommandProvider::close() {
CachedProvider::close();
}
bool CommandProvider::drawLoadInterface() {