We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09d33ab commit 83fc949Copy full SHA for 83fc949
1 file changed
src/main.c
@@ -639,6 +639,7 @@ void LCUI_InitBase(void)
639
LCUI_InitEvent();
640
LCUI_InitFontLibrary();
641
LCUI_InitTimer();
642
+ LCUI_InitCursor();
643
LCUI_InitWidget();
644
LCUI_InitMetrics();
645
}
@@ -651,7 +652,6 @@ void LCUI_Init(void)
651
652
LCUI_InitMouseDriver();
653
LCUI_InitKeyboardDriver();
654
LCUI_InitKeyboard();
- LCUI_InitCursor();
655
LCUI_InitIME();
656
657
switch (LCUI_GetAppId()) {
@@ -682,8 +682,8 @@ int LCUI_Destroy(void)
682
LCUI_FreeApp();
683
LCUI_FreeIME();
684
LCUI_FreeKeyboard();
685
- LCUI_FreeCursor();
686
LCUI_FreeWidget();
+ LCUI_FreeCursor();
687
LCUI_FreeFontLibrary();
688
LCUI_FreeTimer();
689
LCUI_FreeEvent();
0 commit comments