I have a HUD Popup with the following settings: Type: Normal Separator: (Empty) Padding: 0
The statistics in this popup are in groups of 13, with each group separated by a "New Line"
Each of the 13 statistic on the line uses a format expression similar to the following: if(cnt_range_Raise_AA > 0, format('AA: {1} ', format_number(cnt_range_Raise_AA, 0, false, true)),''), which (as designed) puts up the value "AA: X " only if cnt_range_Raise_AA is >0, and leaves the spot blank if cnt_range_Raise_AA is <=0.
What I was hoping for was a neatly spaced, ordered list that looks something like this:
AKs: 1 AK: 1 A9: 1 A8s: 1 A8: 4 A4s: 1
Instead, it appears that the HUD is inserting spaces where the <=0 stats would go even though they should be blank and my padding is set to 0 - so I end up with something like this:
AKs: 1 AK: 1 A9: 1 A8s: 1 A8: 4 A4s: 1
So my question is this - Is there a way to eliminate the extra spaces to get the formatting I am looking for?
Thanks for your help!
