8.3.0 > 9.0.1

This commit is contained in:
Tercio Jose
2020-10-16 19:51:44 -03:00
parent 530a825358
commit c42a35657d
223 changed files with 93840 additions and 94757 deletions
+3 -3
View File
@@ -10,7 +10,7 @@ end
function DF:NewScrollBar (master, slave, x, y)
local new_slider = CreateFrame ("Slider", nil, master)
local new_slider = CreateFrame ("Slider", nil, master,"BackdropTemplate")
new_slider.scrollMax = 560 --default - tamanho da janela de fundo
-- ///// SLIDER /////
@@ -32,7 +32,7 @@ function DF:NewScrollBar (master, slave, x, y)
new_slider:SetValue(0)
new_slider.ultimo = 0
local botao_cima = CreateFrame ("Button", nil, master)
local botao_cima = CreateFrame ("Button", nil, master,"BackdropTemplate")
botao_cima:SetPoint ("BOTTOM", new_slider, "TOP", 0, -12)
botao_cima.x = 0
@@ -46,7 +46,7 @@ function DF:NewScrollBar (master, slave, x, y)
botao_cima:Show()
botao_cima:Disable()
local botao_baixo = CreateFrame ("Button", nil, master)
local botao_baixo = CreateFrame ("Button", nil, master,"BackdropTemplate")
botao_baixo:SetPoint ("TOP", new_slider, "BOTTOM", 0, 12)
botao_baixo.x = 0
botao_baixo.y = 12