Skip to content

Commit

Permalink
Fix number input for notify (#1121)
Browse files Browse the repository at this point in the history
  • Loading branch information
mharis001 authored and commy2 committed Apr 24, 2019
1 parent 45564d0 commit e34dda3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions addons/ui/fnc_notify.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Parameters:
Examples:
(begin example)
["Banana", 1.5, [1, 1, 0, 1]] call CBA_fnc_notify;
(end)
Returns:
Expand Down Expand Up @@ -52,6 +53,10 @@ private _composition = [];

_x params [["_text", "", ["", 0]], ["_size", 1, [0]], ["_color", [], [[]], [3,4]]];

if (_text isEqualType 0) then {
_text = str _text;
};

_size = _size * 0.55 / (getResolution select 5);

_color params [
Expand Down

0 comments on commit e34dda3

Please sign in to comment.