From 89050a7b9b6a5f1289bda199ac00fd506fa6837f Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Wed, 23 Dec 2020 05:52:10 +0200 Subject: [PATCH] - Dwell and Dwell Time parameters are visible in Beginner Mode --- CHANGELOG.md | 4 ++++ appTools/ToolDrilling.py | 3 --- appTools/ToolMilling.py | 4 ++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 684448e1..13246a6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ CHANGELOG for FlatCAM beta ================================================= +23.12.2020 + +- Dwell and Dwell Time parameters are visible in Beginner Mode + 21.12.2020 - made sure that the GCode Editor does not have a misleading Cancel option when closing the tab diff --git a/appTools/ToolDrilling.py b/appTools/ToolDrilling.py index b4bf64db..419b8314 100644 --- a/appTools/ToolDrilling.py +++ b/appTools/ToolDrilling.py @@ -470,9 +470,6 @@ class ToolDrilling(AppTool, Excellon): self.ui.mpass_cb.hide() self.ui.maxdepth_entry.hide() - self.ui.dwell_cb.hide() - self.ui.dwelltime_entry.hide() - self.ui.tool_offset_label.hide() self.ui.offset_entry.hide() diff --git a/appTools/ToolMilling.py b/appTools/ToolMilling.py index 56300a6c..1ab340bd 100644 --- a/appTools/ToolMilling.py +++ b/appTools/ToolMilling.py @@ -579,8 +579,8 @@ class ToolMilling(AppTool, Excellon): self.ui.extracut_cb.hide() self.ui.e_cut_entry.hide() - self.ui.dwell_cb.hide() - self.ui.dwelltime_entry.hide() + # self.ui.dwell_cb.hide() + # self.ui.dwelltime_entry.hide() self.ui.endmove_xy_label.hide() self.ui.endxy_entry.hide()