mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-14 20:33:30 +01:00
Hide debug controls section
This commit is contained in:
parent
90c8b23483
commit
8883e41a85
1 changed files with 1 additions and 3 deletions
|
|
@ -8,7 +8,6 @@ TCAD.UI = function(app) {
|
|||
mainBox.root.css({height : '100%'});
|
||||
var propFolder = new tk.Folder("Solid's Properties");
|
||||
var debugFolder = new tk.Folder("Debug");
|
||||
var objectsFolder = new tk.Folder("Objects");
|
||||
var exportFolder = new tk.Folder("Export");
|
||||
var modificationsFolder = new tk.Folder("Modifications");
|
||||
var extrude, cut, edit, addPlane, save,
|
||||
|
|
@ -23,11 +22,10 @@ TCAD.UI = function(app) {
|
|||
tk.add(propFolder, showSketches = new tk.CheckBox("Show Sketches", true));
|
||||
tk.add(mainBox, exportFolder);
|
||||
tk.add(exportFolder, stlExport = new tk.Button("STL"));
|
||||
tk.add(mainBox, debugFolder);
|
||||
//tk.add(mainBox, debugFolder);
|
||||
tk.add(debugFolder, printSolids = new tk.Button("Print Solids"));
|
||||
tk.add(debugFolder, printFace = new tk.Button("Print Face"));
|
||||
tk.add(debugFolder, printFaceId = new tk.Button("Print Face ID"));
|
||||
tk.add(mainBox, objectsFolder);
|
||||
tk.add(mainBox, modificationsFolder);
|
||||
var modificationsListComp = new tk.List();
|
||||
tk.add(modificationsFolder, modificationsListComp);
|
||||
|
|
|
|||
Loading…
Reference in a new issue