From d458995b5a4fc0225949685ba5e22394b9b4ea3c Mon Sep 17 00:00:00 2001 From: andrew6180 <16847730+andrew6180@users.noreply.github.com> Date: Wed, 10 Jul 2024 16:29:39 -0700 Subject: [PATCH] hide error msg --- classes/class_instance.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/class_instance.lua b/classes/class_instance.lua index 59dbcf4b..8d8f3c55 100644 --- a/classes/class_instance.lua +++ b/classes/class_instance.lua @@ -2065,7 +2065,7 @@ function Details:RestauraJanela(index, temp, load_only) --check if the skin used in the window is the default skin, check if statusbar is in use and if the color of the window is full white if (self.skin == Details.default_skin_to_use and self.show_statusbar) then if(self.color[1] == 1 and self.color[2] == 1 and self.color[3] == 1 and self.color[4] == 1) then - Details:Msg("error 0xFF85DD") + --Details:Msg("error 0xFF85DD") self.skin = "no skin" self:ChangeSkin(Details.default_skin_to_use) end