Add files via upload

This commit is contained in:
2026-07-30 11:11:12 +02:00
committed by GitHub
parent dd6d5ddd6c
commit d6411bd41f
+17
View File
@@ -0,0 +1,17 @@
local _G = ShaguTweaks.GetGlobalEnv()
local T = ShaguTweaks.T
local module = ShaguTweaks:register({
title = T["Hide Tracking Icon"],
description = T["Hides the tracking icon from the minimap."],
expansions = { ["vanilla"] = true, ["tbc"] = nil },
category = T["World & MiniMap"],
enabled = true,
order = 74,
})
module.enable = function(self)
-- Désactive l'affichage automatique du bouton de suivi
MiniMapTrackingFrame.Show = function() end
MiniMapTrackingFrame:Hide()
end