diff --git a/WeakAurasOptions/OptionsFrames/TexturePicker.lua b/WeakAurasOptions/OptionsFrames/TexturePicker.lua index b7b5d29f09..bb54d97334 100644 --- a/WeakAurasOptions/OptionsFrames/TexturePicker.lua +++ b/WeakAurasOptions/OptionsFrames/TexturePicker.lua @@ -255,7 +255,7 @@ local function ConstructTexturePicker(frame) wipe(group.selectedTextures) group.selectedTextures[texturePath] = true - SetAll(self.baseObject, self.path, self.properties.texture, texturePath, width, height, flipbookInfo and true or self.adjustSize) + SetAll(self.baseObject, self.path, self.properties.texture, texturePath, width, height, self.adjustSize) group:UpdateList(); local status = dropdown.status or dropdown.localstatus diff --git a/WeakAurasOptions/RegionOptions/StopMotion.lua b/WeakAurasOptions/RegionOptions/StopMotion.lua index 48b6c0b280..2386e9162c 100644 --- a/WeakAurasOptions/RegionOptions/StopMotion.lua +++ b/WeakAurasOptions/RegionOptions/StopMotion.lua @@ -130,7 +130,7 @@ local function createOptions(id, data) color = "foregroundColor", mirror = "mirror", blendMode = "blendMode" - }, texture_types, setTextureFunc); + }, texture_types, setTextureFunc, true); end, imageWidth = 24, imageHeight = 24, @@ -383,7 +383,7 @@ local function createOptions(id, data) color = "backgroundColor", mirror = "mirror", blendMode = "blendMode" - }, texture_types, setTextureFunc); + }, texture_types, setTextureFunc, true); end, disabled = function() return data.sameTexture or data.hideBackground; end, hidden = function() return data.hideBackground end,