from retail

This commit is contained in:
NoM0Re
2025-01-25 17:46:46 +01:00
parent 1152abe6a5
commit 87c1e2fbaf
7 changed files with 54 additions and 77 deletions
@@ -261,7 +261,7 @@ local function ConstructTexturePicker(frame)
return group
end
function OptionsPrivate.TexturePicker(frame)
texturePicker = texturePicker or ConstructTexturePicker(frame)
function OptionsPrivate.TexturePicker(frame, noConstruct)
texturePicker = texturePicker or (not noConstruct and ConstructTexturePicker(frame))
return texturePicker
end