Skip to content

Commit

Permalink
fix spacing for mods without description (#1095)
Browse files Browse the repository at this point in the history
  • Loading branch information
commy2 authored Mar 9, 2019
1 parent 44dfe5b commit 0d29fc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addons/help/XEH_preStart.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ _mods = _mods apply {
if (isText (_entry >> "description")) then {
private _description = getText (_entry >> "description") call CBA_fnc_sanitizeHTML;

_x = _x + format ["<br/>%1", _description];
_x = _x + format ["<br/>%1<br/>", _description];
};
};

_x
};

_mods = _mods joinString "<br/><br/>";
_mods = _mods joinString "<br/>";

uiNamespace setVariable [QGVAR(mods), compileFinal str _mods];

0 comments on commit 0d29fc6

Please sign in to comment.