internal: include setByUser in CConfigManager::getConfigValue (#14155)

This commit is contained in:
Damien Trala 2026-04-26 11:57:10 +02:00 committed by GitHub
parent b7a3042964
commit 329b2b356d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1482,7 +1482,7 @@ SConfigOptionReply CConfigManager::getConfigValue(const std::string& val) {
if (!VAL)
return {};
return {.dataptr = VAL->getDataStaticPtr(), .type = &VAL->getValue().type()};
return {.dataptr = VAL->getDataStaticPtr(), .type = &VAL->getValue().type(), .setByUser = VAL->m_bSetByUser};
}
Hyprlang::CConfigValue* CConfigManager::getHyprlangConfigValuePtr(const std::string& name, const std::string& specialCat) {