beautify text tags on unlocked bars

This commit is contained in:
Hendrik Leppkes
2008-03-07 15:42:44 +00:00
parent 177f03f29f
commit d84c43e524
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -79,7 +79,7 @@ function Bartender4.Bar:Create(id, template, config)
overlay:SetBackdropBorderColor(0.5, 0.5, 0, 0)
overlay.Text = overlay:CreateFontString(nil, "ARTWORK")
overlay.Text:SetFontObject(GameFontNormal)
overlay.Text:SetText("Bar "..id)
overlay.Text:SetText(tonumber(id) and "Bar "..id or id.." Bar")
overlay.Text:Show()
overlay.Text:ClearAllPoints()
overlay.Text:SetPoint("CENTER", overlay, "CENTER")
+1
View File
@@ -14,6 +14,7 @@ local table_insert = table.insert
local defaults = { profile = Bartender4:Merge({
enabled = true,
vertical = false,
}, Bartender4.Bar.defaults) }
function MicroMenuMod:OnInitialize()