Skip to content

Commit

Permalink
Fix event names casing
Browse files Browse the repository at this point in the history
  • Loading branch information
veteran29 committed Sep 4, 2024
1 parent f644811 commit bf6f746
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions addons/extension_main_menu/XEH_mainDisplay.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
params ["_display"];
TRACE_1("Main display",_display);

_display displayAddEventHandler ["mouseMoving", {with uiNamespace do {call FUNC(onLoad)}}];
_display displayAddEventHandler ["mouseHolding",{with uiNamespace do {call FUNC(onLoad)}}];
_display displayAddEventHandler ["childDestroyed",{with uiNamespace do {call FUNC(onUnload)}}];
_display displayAddEventHandler ["MouseMoving", {with uiNamespace do {call FUNC(onLoad)}}];
_display displayAddEventHandler ["MouseHolding",{with uiNamespace do {call FUNC(onLoad)}}];
_display displayAddEventHandler ["ChildDestroyed",{with uiNamespace do {call FUNC(onUnload)}}];

_display call FUNC(addServerStatusPanel);

Expand Down

0 comments on commit bf6f746

Please sign in to comment.