This commit is contained in:
NoM0Re
2025-07-22 16:49:18 +02:00
committed by GitHub
parent d2b59a3f88
commit d6ae3e020b
47 changed files with 1056 additions and 192 deletions
+10 -2
View File
@@ -241,12 +241,20 @@ local function modify(parent, region, data)
local Update
if customTextFunc and self.displayText and Private.ContainsCustomPlaceHolder(self.displayText) then
Update = function()
Update = function(self)
self.values.custom = Private.RunCustomTextFunc(self, customTextFunc)
UpdateText()
self:UpdateProgress()
end
else
Update = UpdateText or function() end
if UpdateText then
Update = function()
UpdateText()
self:UpdateProgress()
end
else
Update = function() self:UpdateProgress() end
end
end
local FrameTick