renderer: add mouse zoom animations (#10882)
Adds animations for the mouse zoom effect.
This commit is contained in:
parent
e827b75e22
commit
e9c5594186
6 changed files with 20 additions and 10 deletions
|
|
@ -972,6 +972,7 @@ void CConfigManager::setDefaultAnimationVars() {
|
|||
m_animationTree.createNode("border", "global");
|
||||
m_animationTree.createNode("borderangle", "global");
|
||||
m_animationTree.createNode("workspaces", "global");
|
||||
m_animationTree.createNode("zoomFactor", "global");
|
||||
|
||||
// layer
|
||||
m_animationTree.createNode("layersIn", "layers");
|
||||
|
|
@ -1129,8 +1130,11 @@ void CConfigManager::postConfigReload(const Hyprlang::CParseResult& result) {
|
|||
w->uncacheWindowDecos();
|
||||
}
|
||||
|
||||
for (auto const& m : g_pCompositor->m_monitors)
|
||||
static auto PZOOMFACTOR = CConfigValue<Hyprlang::FLOAT>("cursor:zoom_factor");
|
||||
for (auto const& m : g_pCompositor->m_monitors) {
|
||||
*(m->m_cursorZoom) = *PZOOMFACTOR;
|
||||
g_pLayoutManager->getCurrentLayout()->recalculateMonitor(m->m_id);
|
||||
}
|
||||
|
||||
// Update the keyboard layout to the cfg'd one if this is not the first launch
|
||||
if (!m_isFirstLaunch) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue