Fix: fixed aura module with initial configuration and support for tracking buffs, debuffs, and weapon enchants

removed incorrect tutorial tooltip
This commit is contained in:
Bluewhale1337
2026-07-26 11:31:09 +02:00
parent 822f2301cb
commit d56d2647c3
5 changed files with 48 additions and 2 deletions
+9
View File
@@ -766,6 +766,8 @@ function E:StaticPopup_Resize(dialog, which)
height = height + 8 + editBox:GetHeight()
elseif info.hasMoneyFrame then
height = height + 16
elseif info.hasMoneyInputFrame then
height = height + 22
end
if height > maxHeightSoFar then
@@ -903,6 +905,13 @@ function E:StaticPopup_Show(which, text_arg1, text_arg2, data)
_G[name.."MoneyFrame"]:Hide()
end
-- Show or hide money input frame
if info.hasMoneyInputFrame then
_G[name.."MoneyInputFrame"]:Show()
else
_G[name.."MoneyInputFrame"]:Hide()
end
-- Set the miscellaneous variables for the dialog
dialog.which = which
dialog.timeleft = info.timeout
-1
View File
@@ -13,7 +13,6 @@ E.TutorialList = {
L["You can toggle the microbar by using your middle mouse button on the minimap you can also accomplish this by enabling the actual microbar located in the actionbar settings."],
L["A raid marker feature is available by pressing Escape -> Keybinds scroll to the bottom under ElvUI and setting a keybind for the raid marker."],
L["You can set your keybinds quickly by typing /kb."],
L["The focus unit can be set by typing /focus when you are targeting the unit you want to focus. It is recommended you make a macro to do this."],
L["ElvUI has a dual spec feature which allows you to load different profiles based on your current spec on the fly. You can enable this from the profiles tab."],
L["You can access copy chat and chat menu functions by mouse over the top right corner of chat panel and left/right click on the button that will appear."],
L["If you are experiencing issues with ElvUI try disabling all your addons except ElvUI, remember ElvUI is a full UI replacement addon, you cannot run two addons that do the same thing."],