From 30e04df022e45958b1ef4b199dc4ae4f404678a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Jaro=C5=A1?= Date: Sun, 30 Mar 2025 22:08:53 +0200 Subject: [PATCH] Set empty text for 'inform' frame when tactic is not found. --- Addon/Code/Tactic.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Addon/Code/Tactic.lua b/Addon/Code/Tactic.lua index b0fa659..98af299 100755 --- a/Addon/Code/Tactic.lua +++ b/Addon/Code/Tactic.lua @@ -60,6 +60,7 @@ local function RenderBossTactics(frame, bossName) if not tactic then frame.summary:SetText("Boss " .. bossName .. " nemá pro tuto obtížnost přeloženou taktiku.") + frame.inform:Hide() frame:GetParent():Show() return end @@ -136,6 +137,7 @@ local function CreateCreaturesDropdown() frame.summary:SetText("V souboji " .. encounterName .. " není boss, který má přeloženou taktikou.") frame:GetParent():Show() frame.dropdown:Hide() + frame.inform:Hide() end end