Set empty text for 'inform' frame when tactic is not found.

This commit is contained in:
Roman Jaroš 2025-03-30 22:08:53 +02:00
parent b727b537ef
commit 30e04df022

View file

@ -60,6 +60,7 @@ local function RenderBossTactics(frame, bossName)
if not tactic then if not tactic then
frame.summary:SetText("Boss " .. bossName .. " nemá pro tuto obtížnost přeloženou taktiku.") frame.summary:SetText("Boss " .. bossName .. " nemá pro tuto obtížnost přeloženou taktiku.")
frame.inform:Hide()
frame:GetParent():Show() frame:GetParent():Show()
return return
end end
@ -136,6 +137,7 @@ local function CreateCreaturesDropdown()
frame.summary:SetText("V souboji " .. encounterName .. " není boss, který má přeloženou taktikou.") frame.summary:SetText("V souboji " .. encounterName .. " není boss, který má přeloženou taktikou.")
frame:GetParent():Show() frame:GetParent():Show()
frame.dropdown:Hide() frame.dropdown:Hide()
frame.inform:Hide()
end end
end end