mirror of
https://github.com/hyprwm/Hyprland.git
synced 2024-12-23 15:42:12 +03:00
internal: fixup some missed updateColorsOk() calls
This commit is contained in:
parent
f6ac755cf7
commit
3c617ce33c
@ -692,6 +692,8 @@ void CWindow::applyDynamicRule(const SWindowRule& r) {
|
|||||||
inactiveBorderGradient.m_vColors.push_back(configStringToInt(token).value_or(0));
|
inactiveBorderGradient.m_vColors.push_back(configStringToInt(token).value_or(0));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
activeBorderGradient.updateColorsOk();
|
||||||
|
|
||||||
// Includes sanity checks for the number of colors in each gradient
|
// Includes sanity checks for the number of colors in each gradient
|
||||||
if (activeBorderGradient.m_vColors.size() > 10 || inactiveBorderGradient.m_vColors.size() > 10)
|
if (activeBorderGradient.m_vColors.size() > 10 || inactiveBorderGradient.m_vColors.size() > 10)
|
||||||
Debug::log(WARN, "Bordercolor rule \"{}\" has more than 10 colors in one gradient, ignoring", r.szRule);
|
Debug::log(WARN, "Bordercolor rule \"{}\" has more than 10 colors in one gradient, ignoring", r.szRule);
|
||||||
|
@ -2997,6 +2997,8 @@ SDispatchResult CKeybindManager::setProp(std::string args) {
|
|||||||
return std::invoke_result_t<decltype(::configStringToInt), const std::string&>(1);
|
return std::invoke_result_t<decltype(::configStringToInt), const std::string&>(1);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
colorData.updateColorsOk();
|
||||||
|
|
||||||
if (PROP == "activebordercolor")
|
if (PROP == "activebordercolor")
|
||||||
PWINDOW->m_sWindowData.activeBorderColor = CWindowOverridableVar(colorData, PRIORITY_SET_PROP);
|
PWINDOW->m_sWindowData.activeBorderColor = CWindowOverridableVar(colorData, PRIORITY_SET_PROP);
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user