File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ TLM._ns = ns;
77
88_G .TalentLoadoutManager = TLM ;
99
10- local BLIZZ_ATLAS = CreateAtlasMarkup (" gmchat-icon-blizz" , 16 , 16 );
11- local XP_ATLAS = CreateAtlasMarkup (" GarrMission_CurrencyIcon-Xp" , 16 , 16 );
10+ local BLIZZ_ATLAS = CreateAtlasMarkup (" gmchat-icon-blizz" , 16 , 16 ) .. " " ;
11+ local XP_ATLAS = CreateAtlasMarkup (" GarrMission_CurrencyIcon-Xp" , 16 , 16 ) .. " " ;
1212
1313ns .SERIALIZATION_NODE_SEPARATOR = " \n " ;
1414--- format: nodeID_entryID_spellIDOrSubTreeID_rank
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ local SETTING_SUFFIX_COLLAPSED = "_Collapsed";
2727local SETTING_SUFFIX_ANCHOR_LOCATION = " _AnchorLocation" ;
2828local ANCHOR_LEFT = 0 ;
2929local ANCHOR_RIGHT = 1 ;
30- local LOCK_MARKUP = CreateAtlasMarkup (" AdventureMapIcon-Lock" , 16 , 16 );
30+ local LOCK_MARKUP = CreateAtlasMarkup (" AdventureMapIcon-Lock" , 16 , 16 ) .. " " ;
3131
3232function SideBarMixin :OnInitialize ()
3333 local loadoutNameSubText = " Anything before the first '||' character will not display. This allows you to sort loadouts by adding a prefix." ;
@@ -748,7 +748,7 @@ function SideBarMixin:CreateScrollBox(parentContainer)
748748 end
749749 local text = entry .text ;
750750 if entry .data .isLocked then
751- text = LOCK_MARKUP .. " " .. text ;
751+ text = LOCK_MARKUP .. text ;
752752 end
753753 if entry .parentID then
754754 text = " || " .. text ;
You can’t perform that action at this time.
0 commit comments