Skip to content
Snippets Groups Projects
Commit 34d668c8 authored by Maximilian Giller's avatar Maximilian Giller
Browse files

Deactivated useless collect tool

parent 21d0c684
No related branches found
No related tags found
No related merge requests found
Pipeline #50574 passed
...@@ -2,7 +2,6 @@ import Tool from "./tools/tool"; ...@@ -2,7 +2,6 @@ import Tool from "./tools/tool";
import UndoTool from "./tools/undotool"; import UndoTool from "./tools/undotool";
import RedoTool from "./tools/redotool"; import RedoTool from "./tools/redotool";
import SelectTool from "./tools/selecttool"; import SelectTool from "./tools/selecttool";
import CollectTool from "./tools/collecttool";
import DeleteTool from "./tools/deletetool"; import DeleteTool from "./tools/deletetool";
import AddNodeTool from "./tools/addnodetool"; import AddNodeTool from "./tools/addnodetool";
import ConnectTool from "./tools/connecttool"; import ConnectTool from "./tools/connecttool";
...@@ -16,7 +15,6 @@ export const TOOLS = { ...@@ -16,7 +15,6 @@ export const TOOLS = {
undo: new UndoTool("undo"), undo: new UndoTool("undo"),
redo: new RedoTool("redo"), redo: new RedoTool("redo"),
select: new SelectTool("select"), select: new SelectTool("select"),
collect: new CollectTool("collect"),
delete: new DeleteTool("delete"), delete: new DeleteTool("delete"),
addnode: new AddNodeTool("addnode"), addnode: new AddNodeTool("addnode"),
connect: new ConnectTool("connect"), connect: new ConnectTool("connect"),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment