- Added an option to disable stretch button and bar highlight.

- Disabling nicknames now also disable avatars.
- Fixed miscrodisplays font selection wasn't showing all fonts.
This commit is contained in:
Tercio
2015-08-17 17:14:47 -03:00
parent c10dcc50b0
commit 2808036d55
8 changed files with 114 additions and 30 deletions
+7 -5
View File
@@ -1606,12 +1606,14 @@ extraWindow:SetBackdropColor (0, 0, 0, 0.9)
end
local fontObjects = SharedMedia:HashTable ("font")
local fontTable = {}
for name, fontPath in pairs (fontObjects) do
fontTable[#fontTable+1] = {value = name, label = name, onclick = onSelectFont, font = fontPath}
local buildFontMenu = function()
local fontObjects = SharedMedia:HashTable ("font")
local fontTable = {}
for name, fontPath in pairs (fontObjects) do
fontTable[#fontTable+1] = {value = name, label = name, onclick = onSelectFont, font = fontPath}
end
return fontTable
end
local buildFontMenu = function() return fontTable end
_detalhes.gump:NewLabel (window, _, "$parentFontFaceLabel", "fontfaceLabel", Loc ["STRING_PLUGINOPTIONS_FONTFACE"])
window.fontfaceLabel:SetPoint (10, -75)