forked from quickshell/quickshell
core/reloader: fix late creation of Reloadable types
This commit is contained in:
parent
61812343f5
commit
6eb68d2cd7
13 changed files with 87 additions and 48 deletions
|
@ -48,7 +48,7 @@ void SingletonRegistry::registerSingleton(const QUrl& url, Singleton* singleton)
|
|||
|
||||
void SingletonRegistry::onReload(SingletonRegistry* old) {
|
||||
for (auto [url, singleton]: this->registry.asKeyValueRange()) {
|
||||
singleton->onReload(old == nullptr ? nullptr : old->registry.value(url));
|
||||
singleton->reload(old == nullptr ? nullptr : old->registry.value(url));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue