From aaa5a149c2b92c1276a04f86cc9cf9b1ae279851 Mon Sep 17 00:00:00 2001 From: Tercio Jose Date: Thu, 8 Sep 2022 16:28:44 -0300 Subject: [PATCH] SetAlpha above 1.0 is causing error --- boot.lua | 2 +- frames/window_main.lua | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/boot.lua b/boot.lua index cda0aefb..e445a949 100644 --- a/boot.lua +++ b/boot.lua @@ -18,7 +18,7 @@ _detalhes.BFACORE = 131 --core version on BFA launch _detalhes.SHADOWLANDSCORE = 143 --core version on Shadowlands launch -- - _detalhes.dragonflight_beta_version = 25 + _detalhes.dragonflight_beta_version = 26 Details = _detalhes diff --git a/frames/window_main.lua b/frames/window_main.lua index 2f88b1cf..32556610 100644 --- a/frames/window_main.lua +++ b/frames/window_main.lua @@ -7284,9 +7284,9 @@ function Details:ChangeSkin(skin_name) ----------> lock alpha head if (not this_skin.can_change_alpha_head) then - self.baseframe.cabecalho.ball:SetAlpha (100) + self.baseframe.cabecalho.ball:SetAlpha(1) else - self.baseframe.cabecalho.ball:SetAlpha (self.color[4]) + self.baseframe.cabecalho.ball:SetAlpha(self.color[4]) end ----------> update abbreviation function on the class files