from retail

This commit is contained in:
Bunny67
2020-07-18 22:48:08 +03:00
parent 741c70cbb5
commit 0e3999b8fd
3 changed files with 25 additions and 2 deletions
+14 -2
View File
@@ -809,7 +809,13 @@ function WeakAuras.ConstructOptions(prototype, data, startorder, triggernum, tri
type = "select",
width = WeakAuras.doubleWidth,
name = L["Hide"],
order = order
order = order,
get = function()
return trigger.unevent
end,
set = function(info, v)
trigger.unevent = v
end
};
order = order + 1;
if(unevent == "timed") then
@@ -818,7 +824,13 @@ function WeakAuras.ConstructOptions(prototype, data, startorder, triggernum, tri
type = "input",
width = WeakAuras.normalWidth,
name = L["Duration (s)"],
order = order
order = order,
get = function()
return trigger.duration
end,
set = function(info, v)
trigger.duration = v
end
}
order = order + 1;
else