coa.29: right-size VisibleLines for the taller window (rows were overflowing)
release / release (push) Successful in 5s
release / release (push) Successful in 5s
All list rows are 22px; the resize had set VisibleLines=20 uniformly (20x22=440 > the 414px content frame), so the bottom rows spilled past the frame - visible as the guild list running into the 'Click a character's AiL' footer. Set 18 rows for all list tabs (18x22=396), 17 for GuildMembers (it has the equipment footer).
This commit is contained in:
@@ -338,7 +338,7 @@ function addon:OnEnable()
|
|||||||
-- CoA: use a Lua constant, not GetAddOnMetadata — TOC metadata is cached at game launch
|
-- CoA: use a Lua constant, not GetAddOnMetadata — TOC metadata is cached at game launch
|
||||||
-- and does NOT refresh on /reload, so the .toc version looked stale ("still .18"). A Lua
|
-- and does NOT refresh on /reload, so the .toc version looked stale ("still .18"). A Lua
|
||||||
-- constant re-evaluates on every /reload, giving a truthful loaded-code version. Bump with the .toc.
|
-- constant re-evaluates on every /reload, giving a truthful loaded-code version. Bump with the .toc.
|
||||||
AltoholicFrameName:SetText("Altoholic |cFFFFFFFF3.3.002b-coa.28|r")
|
AltoholicFrameName:SetText("Altoholic |cFFFFFFFF3.3.002b-coa.29|r")
|
||||||
|
|
||||||
local realm = GetRealmName()
|
local realm = GetRealmName()
|
||||||
local player = UnitName("player")
|
local player = UnitName("player")
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
## Author: Thaoky, Telkar-RG
|
## Author: Thaoky, Telkar-RG
|
||||||
## X-Edited-By: Exiles (Sub-Net) — florian.berthold@sub-net.at
|
## X-Edited-By: Exiles (Sub-Net) — florian.berthold@sub-net.at
|
||||||
## Version: 3.3.002b-coa.28
|
## Version: 3.3.002b-coa.29
|
||||||
## X-Category: Inventory, Tradeskill, Mail
|
## X-Category: Inventory, Tradeskill, Mail
|
||||||
## X-Localizations: enUS, frFR, zhCN, zhTW, deDE, koKR, esES, esMX, ruRU
|
## X-Localizations: enUS, frFR, zhCN, zhTW, deDE, koKR, esES, esMX, ruRU
|
||||||
## X-Website: http://wow.curse.com/downloads/wow-addons/details/altoholic.aspx
|
## X-Website: http://wow.curse.com/downloads/wow-addons/details/altoholic.aspx
|
||||||
|
|||||||
@@ -168,7 +168,7 @@ end
|
|||||||
|
|
||||||
|
|
||||||
function ns:Update()
|
function ns:Update()
|
||||||
local VisibleLines = 20
|
local VisibleLines = 18
|
||||||
local frame = "AltoholicFrameSummary"
|
local frame = "AltoholicFrameSummary"
|
||||||
local entry = frame.."Entry"
|
local entry = frame.."Entry"
|
||||||
|
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ local ns = addon.Activity -- ns = namespace
|
|||||||
local Characters = addon.Characters
|
local Characters = addon.Characters
|
||||||
|
|
||||||
function ns:Update()
|
function ns:Update()
|
||||||
local VisibleLines = 20
|
local VisibleLines = 18
|
||||||
local frame = "AltoholicFrameActivity"
|
local frame = "AltoholicFrameActivity"
|
||||||
local entry = frame.."Entry"
|
local entry = frame.."Entry"
|
||||||
|
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ local ns = addon.BagUsage -- ns = namespace
|
|||||||
local Characters = addon.Characters
|
local Characters = addon.Characters
|
||||||
|
|
||||||
function ns:Update()
|
function ns:Update()
|
||||||
local VisibleLines = 20
|
local VisibleLines = 18
|
||||||
local frame = "AltoholicFrameBagUsage"
|
local frame = "AltoholicFrameBagUsage"
|
||||||
local entry = frame.."Entry"
|
local entry = frame.."Entry"
|
||||||
|
|
||||||
|
|||||||
@@ -72,7 +72,7 @@ function ns:Update()
|
|||||||
BuildView()
|
BuildView()
|
||||||
end
|
end
|
||||||
|
|
||||||
local VisibleLines = 20
|
local VisibleLines = 18
|
||||||
local frame = "AltoholicFrameGuildBankTabs"
|
local frame = "AltoholicFrameGuildBankTabs"
|
||||||
local entry = frame.."Entry"
|
local entry = frame.."Entry"
|
||||||
|
|
||||||
|
|||||||
@@ -285,7 +285,7 @@ function ns:Update()
|
|||||||
BuildView()
|
BuildView()
|
||||||
end
|
end
|
||||||
|
|
||||||
local VisibleLines = 20
|
local VisibleLines = 17
|
||||||
local frame = "AltoholicFrameGuildMembers"
|
local frame = "AltoholicFrameGuildMembers"
|
||||||
local entry = frame.."Entry"
|
local entry = frame.."Entry"
|
||||||
|
|
||||||
|
|||||||
@@ -221,7 +221,7 @@ function ns:Update()
|
|||||||
BuildView()
|
BuildView()
|
||||||
end
|
end
|
||||||
|
|
||||||
local VisibleLines = 20
|
local VisibleLines = 18
|
||||||
local frame = "AltoholicFrameGuildProfessions"
|
local frame = "AltoholicFrameGuildProfessions"
|
||||||
local entry = frame.."Entry"
|
local entry = frame.."Entry"
|
||||||
|
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ function ns:Update()
|
|||||||
local character = addon.Tabs.Characters:GetCurrent()
|
local character = addon.Tabs.Characters:GetCurrent()
|
||||||
|
|
||||||
|
|
||||||
local VisibleLines = 20
|
local VisibleLines = 18
|
||||||
local frame = "AltoholicFrameQuests"
|
local frame = "AltoholicFrameQuests"
|
||||||
local entry = frame.."Entry"
|
local entry = frame.."Entry"
|
||||||
|
|
||||||
|
|||||||
@@ -218,7 +218,7 @@ end
|
|||||||
function ns:Update()
|
function ns:Update()
|
||||||
local currentProfession = addon.TradeSkills.CurrentProfession
|
local currentProfession = addon.TradeSkills.CurrentProfession
|
||||||
|
|
||||||
local VisibleLines = 20
|
local VisibleLines = 18
|
||||||
local frame = "AltoholicFrameRecipes"
|
local frame = "AltoholicFrameRecipes"
|
||||||
local entry = frame.."Entry"
|
local entry = frame.."Entry"
|
||||||
|
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ local inset = 2
|
|||||||
|
|
||||||
|
|
||||||
function ns:Update()
|
function ns:Update()
|
||||||
local VisibleLines = 20
|
local VisibleLines = 18
|
||||||
local frame = "AltoholicFrameSkills"
|
local frame = "AltoholicFrameSkills"
|
||||||
local entry = frame.."Entry"
|
local entry = frame.."Entry"
|
||||||
local DS = DataStore
|
local DS = DataStore
|
||||||
|
|||||||
Reference in New Issue
Block a user