Added background blur for save timeline preset window

This commit is contained in:
penolakushari 2023-01-01 18:09:45 +03:00
parent 81e5f77d74
commit d268c547c8

View File

@ -254,6 +254,7 @@ function PANEL:MakeSettingSavePanel()
savepanel:SetPos((ScrW() / 2) - 100, (ScrH() / 2) - 50)
savepanel:SetSize(200, 100)
savepanel:MakePopup()
savepanel:SetBackgroundBlur(true)
savepanel.TextEnter = vgui.Create("DTextEntry", savepanel)
savepanel.TextEnter:SetPos(50, 45)
@ -272,6 +273,7 @@ function PANEL:MakeSettingSavePanel()
end
savepanel.OnClose = function()
savepanel:SetBackgroundBlur(false)
IsSaving = false
end
end