Skip to content

Commit

Permalink
Fix merge error
Browse files Browse the repository at this point in the history
  • Loading branch information
Timi007 committed Dec 8, 2023
1 parent 3bf2fdd commit e4f48b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addons/markers/functions/fnc_initializeUI.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,8 @@ _presetsList ctrlAddEventHandler ["LBDblClick", LINKFUNC(loadPreset)];

//add EH for the searchbar
private _searchCtrl = _mainDisplay displayCtrl SEARCH_PRESETS_EDIT;
_searchCtrl ctrlAddEventHandler ["KeyDown", FUNC(updatePresetsList)];
_searchCtrl ctrlAddEventHandler ["KeyUp", FUNC(updatePresetsList)];
_searchCtrl ctrlAddEventHandler ["KeyDown", LINKFUNC(updatePresetsList)];
_searchCtrl ctrlAddEventHandler ["KeyUp", LINKFUNC(updatePresetsList)];

{
_x ctrlAddEventHandler ["CheckedChanged", LINKFUNC(onOperationalConditionChanged)];
Expand Down

0 comments on commit e4f48b2

Please sign in to comment.