From 68e6d8d164361313aeed19d8cc565b5a74f65e5f Mon Sep 17 00:00:00 2001 From: vocx-fc Date: Fri, 1 May 2020 00:38:08 -0500 Subject: [PATCH] Draft: activate both Fillet commands to test In this moment the old fillet tool is `Draft_Fillet` and the new tool is `Draft_Fillet_new`. They are imported both, so they can both be tested from the interface. --- src/Mod/Draft/draftutils/init_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Draft/draftutils/init_tools.py b/src/Mod/Draft/draftutils/init_tools.py index 51b3e2f1e9..7fb51e2161 100644 --- a/src/Mod/Draft/draftutils/init_tools.py +++ b/src/Mod/Draft/draftutils/init_tools.py @@ -38,7 +38,7 @@ from PySide.QtCore import QT_TRANSLATE_NOOP def get_draft_drawing_commands(): """Return the drawing commands list.""" - return ["Draft_Line", "Draft_Wire", # "Draft_Fillet", + return ["Draft_Line", "Draft_Wire", "Draft_Fillet", "Draft_Fillet_new", "Draft_ArcTools", "Draft_Circle", "Draft_Ellipse", "Draft_Rectangle", "Draft_Polygon", "Draft_BSpline", "Draft_BezierTools",