Skip to content

Commit dbc509b

Browse files
committed
change default state to hidden
1 parent da6c52c commit dbc509b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Classes/TreeTab.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -284,8 +284,8 @@ local TreeTabClass = newClass("TreeTab", "ControlHost", function(self, build)
284284
end)
285285
self.controls.powerReportList.shown = false
286286

287-
-- Timeline drawer; mutually exclusive with the power report drawer
288-
self.showTimeline = true
287+
-- Timeline drawer; mutually exclusive with the power report drawer. Hidden by default.
288+
self.showTimeline = false
289289
self.controls.timelineToggle = new("ButtonControl", { "LEFT", self.controls.nodePowerMaxDepthSelect, "RIGHT" }, { 8, 0, 200, 20 },
290290
function() return self.showTimeline and "Hide Passive Progression" or "Show Passive Progression" end, function()
291291
self.showTimeline = not self.showTimeline

0 commit comments

Comments
 (0)