diff options
author | vaxerski <[email protected]> | 2022-05-31 14:01:00 +0200 |
---|---|---|
committer | vaxerski <[email protected]> | 2022-05-31 14:01:00 +0200 |
commit | 0055efc4f1e44b440cb5649bece2b6358d01f24a (patch) | |
tree | 79e17d427d34f397f5d64e679be4396d8963ef91 /src/helpers/AnimatedVariable.hpp | |
parent | df722cbb86bdc3b45827234c34e6ab90d02d5068 (diff) | |
download | Hyprland-0055efc4f1e44b440cb5649bece2b6358d01f24a.tar.gz Hyprland-0055efc4f1e44b440cb5649bece2b6358d01f24a.zip |
Added a special workspace
Diffstat (limited to 'src/helpers/AnimatedVariable.hpp')
-rw-r--r-- | src/helpers/AnimatedVariable.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/helpers/AnimatedVariable.hpp b/src/helpers/AnimatedVariable.hpp index 0b31b5c5..bb04869f 100644 --- a/src/helpers/AnimatedVariable.hpp +++ b/src/helpers/AnimatedVariable.hpp @@ -149,8 +149,6 @@ public: return false; // unreachable } -private: - void warp() { switch (m_eVarType) { case AVARTYPE_FLOAT: { @@ -170,6 +168,8 @@ private: } } +private: + Vector2D m_vValue = Vector2D(0,0); float m_fValue = 0; CColor m_cValue; |