mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-22 23:45:58 +01:00
cursormgr: initialize size to 0
Because the ctor expects that. Ref #5237
This commit is contained in:
parent
432924b372
commit
09e1128da2
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ class CCursorManager {
|
||||||
std::unique_ptr<Hyprcursor::CHyprcursorManager> m_pHyprcursor;
|
std::unique_ptr<Hyprcursor::CHyprcursorManager> m_pHyprcursor;
|
||||||
|
|
||||||
std::string m_szTheme = "";
|
std::string m_szTheme = "";
|
||||||
int m_iSize = 24;
|
int m_iSize = 0;
|
||||||
float m_fCursorScale = 1.0;
|
float m_fCursorScale = 1.0;
|
||||||
|
|
||||||
Hyprcursor::SCursorStyleInfo m_sCurrentStyleInfo;
|
Hyprcursor::SCursorStyleInfo m_sCurrentStyleInfo;
|
||||||
|
|
Loading…
Reference in a new issue