Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions help.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Ctrl + I Jump to import tab
Ctrl + A Select all
Ctrl + C Copy
Ctrl + F Show find / search box (e.g. unique item / tree)
Ctrl + M Manage Trees (Tree tab only)
Ctrl + N New build (in build selection menu)
Ctrl + S Save build to file
Ctrl + U Check for update
Expand Down
4 changes: 3 additions & 1 deletion src/Classes/TreeTab.lua
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,8 @@ function TreeTabClass:Draw(viewPort, inputEvents)
inputEvents[id] = nil
elseif event.key == "f" and IsKeyDown("CTRL") then
self:SelectControl(self.controls.treeSearch)
elseif event.key == "m" and IsKeyDown("CTRL") then
self:OpenSpecManagePopup()
end
end
end
Expand Down Expand Up @@ -249,7 +251,7 @@ function TreeTabClass:Draw(viewPort, inputEvents)
t_insert(newSpecList, (spec.treeVersion ~= latestTreeVersion and ("["..treeVersions[spec.treeVersion].display.."] ") or "")..(spec.title or "Default"))
end
self.build.itemsTab.controls.specSelect:SetList(copyTable(newSpecList)) -- Update the passive tree dropdown control in itemsTab
t_insert(newSpecList, "Manage trees...")
t_insert(newSpecList, "Manage trees... (ctrl-m)")
self.controls.specSelect:SetList(newSpecList)

if not self.controls.treeSearch.hasFocus then
Expand Down