Skip to content

Commit

Permalink
only force update quest tracker header if tracker is loaded
Browse files Browse the repository at this point in the history
  • Loading branch information
Nils89 committed May 24, 2024
1 parent 837bdec commit e9f4c94
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
1.4.3-Cata
Only force update quest tracker header if tracker is loaded

1.4.2-Cata
Fix grid aura indicator frame layer
Fix wrong setting api
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG_NEW_VERSION.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
1.4.3-Cata
Only force update quest tracker header if tracker is loaded

1.4.2-Cata
Fix grid aura indicator frame layer
Fix wrong setting api
Expand Down
4 changes: 4 additions & 0 deletions changelog.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ local ct = {
}
GW.CHANGELOGS_TYPES = ct

addChange("1.4.3",{
{ct.bug,[=[Only force update quest tracker header if tracker is loaded]=]},
})

addChange("1.4.2",{
{ct.bug,[=[Fix grid aura indicator frame layer]=]},
{ct.bug,[=[Fix wrong setting api]=]},
Expand Down
4 changes: 3 additions & 1 deletion objectives/notifications.lua
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,9 @@ local function RemoveTrackerNotificationOfType(doType)
notifications[k] = nil
end
end
GW.forceCompassHeaderUpdate()
if GetSetting("QUESTTRACKER_ENABLED") and not GW.IsIncompatibleAddonLoadedOrOverride("Objectives", true) then
GW.forceCompassHeaderUpdate()
end
end
GW.RemoveTrackerNotificationOfType = RemoveTrackerNotificationOfType

Expand Down

0 comments on commit e9f4c94

Please sign in to comment.