mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-23 22:25:59 +01:00
def 0%
This commit is contained in:
parent
b509273759
commit
00319c01d4
1 changed files with 2 additions and 2 deletions
|
@ -116,7 +116,7 @@ void CWorkspace::startAnim(bool in, bool left, bool instant) {
|
||||||
// handle animation styles for the movement one
|
// handle animation styles for the movement one
|
||||||
if (ANIMSTYLE.starts_with("slide") && ANIMSTYLE.contains("%")) {
|
if (ANIMSTYLE.starts_with("slide") && ANIMSTYLE.contains("%")) {
|
||||||
const auto PMONITOR = g_pCompositor->getMonitorFromID(m_iMonitorID);
|
const auto PMONITOR = g_pCompositor->getMonitorFromID(m_iMonitorID);
|
||||||
float movePerc = 100.f;
|
float movePerc = 0.F;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
auto percstr = ANIMSTYLE.substr(ANIMSTYLE.find_last_of(' ') + 1);
|
auto percstr = ANIMSTYLE.substr(ANIMSTYLE.find_last_of(' ') + 1);
|
||||||
|
@ -143,7 +143,7 @@ void CWorkspace::startAnim(bool in, bool left, bool instant) {
|
||||||
} else if (ANIMSTYLE.starts_with("popin")) {
|
} else if (ANIMSTYLE.starts_with("popin")) {
|
||||||
m_vRenderOffset.setValueAndWarp(Vector2D(0, 0));
|
m_vRenderOffset.setValueAndWarp(Vector2D(0, 0));
|
||||||
|
|
||||||
float startPerc = 100.f;
|
float startPerc = 0.F;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
auto percstr = ANIMSTYLE.substr(ANIMSTYLE.find_last_of(' ') + 1);
|
auto percstr = ANIMSTYLE.substr(ANIMSTYLE.find_last_of(' ') + 1);
|
||||||
|
|
Loading…
Reference in a new issue