Skip to content

Commit

Permalink
Arsenal - Disable action buttons when hidden (acemod#9664)
Browse files Browse the repository at this point in the history
Update fnc_handleActions.sqf
  • Loading branch information
johnb432 authored Nov 28, 2023
1 parent 65be883 commit f94197b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions addons/arsenal/functions/fnc_handleActions.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -118,12 +118,14 @@ _actionsCurrentPageCtrl ctrlCommit 0;
_actionTextCtrl ctrlSetFade 0;
_actionTextCtrl ctrlCommit 0;
_actionButtonCtrl ctrlSetFade 1;
_actionButtonCtrl ctrlEnable false;
_actionButtonCtrl ctrlCommit 0;
};
default {
_actionTextCtrl ctrlSetFade 1;
_actionTextCtrl ctrlCommit 0;
_actionButtonCtrl ctrlSetFade 1;
_actionButtonCtrl ctrlEnable false;
_actionButtonCtrl ctrlCommit 0;
};
};
Expand Down

0 comments on commit f94197b

Please sign in to comment.