From 8d8ac76e5acd55af850ebd17632e59b6e73e8d85 Mon Sep 17 00:00:00 2001 From: Xurkon Date: Wed, 18 Mar 2026 22:22:36 -0500 Subject: [PATCH] fix: restore string texture paths in LibDBIcon-1.0 for older clients --- Libs/LibDBIcon-1.0/LibDBIcon-1.0.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Libs/LibDBIcon-1.0/LibDBIcon-1.0.lua b/Libs/LibDBIcon-1.0/LibDBIcon-1.0.lua index 663fe94..9cf1d72 100644 --- a/Libs/LibDBIcon-1.0/LibDBIcon-1.0.lua +++ b/Libs/LibDBIcon-1.0/LibDBIcon-1.0.lua @@ -228,14 +228,14 @@ local function createButton(name, object, db) button:SetSize(31, 31) button:RegisterForClicks("anyUp") button:RegisterForDrag("LeftButton") - button:SetHighlightTexture(136477) --"Interface\\Minimap\\UI-Minimap-ZoomButton-Highlight" + button:SetHighlightTexture("Interface\\Minimap\\UI-Minimap-ZoomButton-Highlight") local overlay = button:CreateTexture(nil, "OVERLAY") overlay:SetSize(53, 53) - overlay:SetTexture(136430) --"Interface\\Minimap\\MiniMap-TrackingBorder" + overlay:SetTexture("Interface\\Minimap\\MiniMap-TrackingBorder") overlay:SetPoint("TOPLEFT") local background = button:CreateTexture(nil, "BACKGROUND") background:SetSize(20, 20) - background:SetTexture(136467) --"Interface\\Minimap\\UI-Minimap-Background" + background:SetTexture("Interface\\Minimap\\UI-Minimap-Background") background:SetPoint("TOPLEFT", 7, -5) local icon = button:CreateTexture(nil, "ARTWORK") icon:SetSize(17, 17)