config: always call refresh after config reload (#14346)

This commit is contained in:
Vaxry 2026-05-08 01:20:22 +01:00 committed by GitHub
parent f61ee4c25a
commit 6c2296722b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 4 deletions

View file

@ -1056,8 +1056,7 @@ void CConfigManager::postConfigReload(const Hyprlang::CParseResult& result) {
// update plugins
handlePluginLoads();
if (!m_isFirstLaunch)
Config::Supplementary::refresher()->scheduleRefresh(Supplementary::REFRESH_ALL);
Config::Supplementary::refresher()->scheduleRefresh(Supplementary::REFRESH_ALL);
Event::bus()->m_events.config.reloaded.emit();
if (g_pEventManager)

View file

@ -562,8 +562,7 @@ void CConfigManager::postConfigReload() {
handlePluginLoads();
if (!m_isFirstLaunch)
Config::Supplementary::refresher()->scheduleRefresh(Supplementary::REFRESH_ALL);
Config::Supplementary::refresher()->scheduleRefresh(Supplementary::REFRESH_ALL);
Event::bus()->m_events.config.reloaded.emit();
if (g_pEventManager)