Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/Classes/TreeTab.lua
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,10 @@ local TreeTabClass = newClass("TreeTab", "ControlHost", function(self, build)
self.viewer.showHeatMap = state
self.controls.treeHeatMapStatSelect.shown = state

if state == false then
if state == false and ToastNotification:Exists(self.powerBuilderToastId) then
self.controls.powerReportList.shown = false
ToastNotification:Remove(self.powerBuilderToastId)
elseif state == false then
self.controls.powerReportList.shown = false
end
end)
Expand Down
Loading