- Dwell and Dwell Time parameters are visible in Beginner Mode

This commit is contained in:
Marius Stanciu
2020-12-23 05:52:10 +02:00
committed by Marius
parent b2035aca34
commit 89050a7b9b
3 changed files with 6 additions and 5 deletions

View File

@@ -7,6 +7,10 @@ CHANGELOG for FlatCAM beta
================================================= =================================================
23.12.2020
- Dwell and Dwell Time parameters are visible in Beginner Mode
21.12.2020 21.12.2020
- made sure that the GCode Editor does not have a misleading Cancel option when closing the tab - made sure that the GCode Editor does not have a misleading Cancel option when closing the tab

View File

@@ -470,9 +470,6 @@ class ToolDrilling(AppTool, Excellon):
self.ui.mpass_cb.hide() self.ui.mpass_cb.hide()
self.ui.maxdepth_entry.hide() self.ui.maxdepth_entry.hide()
self.ui.dwell_cb.hide()
self.ui.dwelltime_entry.hide()
self.ui.tool_offset_label.hide() self.ui.tool_offset_label.hide()
self.ui.offset_entry.hide() self.ui.offset_entry.hide()

View File

@@ -579,8 +579,8 @@ class ToolMilling(AppTool, Excellon):
self.ui.extracut_cb.hide() self.ui.extracut_cb.hide()
self.ui.e_cut_entry.hide() self.ui.e_cut_entry.hide()
self.ui.dwell_cb.hide() # self.ui.dwell_cb.hide()
self.ui.dwelltime_entry.hide() # self.ui.dwelltime_entry.hide()
self.ui.endmove_xy_label.hide() self.ui.endmove_xy_label.hide()
self.ui.endxy_entry.hide() self.ui.endxy_entry.hide()