From 1be1851ac7cb50b9e4bc016a8d617f3415daa18d Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Sun, 2 Feb 2020 05:53:03 +0200 Subject: [PATCH] - in Excellon UI, if Basic application mode is selected in Preferences, the Plot column 'P' is hidden now because some inexperienced users mistake this column checkboxes for tool selection --- FlatCAMObj.py | 1 + README.md | 1 + 2 files changed, 2 insertions(+) diff --git a/FlatCAMObj.py b/FlatCAMObj.py index 9e5dd15d..e9982564 100644 --- a/FlatCAMObj.py +++ b/FlatCAMObj.py @@ -2847,6 +2847,7 @@ class FlatCAMExcellon(FlatCAMObj, Excellon): self.ui.level.setText('%s' % _('Basic')) self.ui.tools_table.setColumnHidden(4, True) + self.ui.tools_table.setColumnHidden(5, True) self.ui.estartz_label.hide() self.ui.estartz_entry.hide() self.ui.feedrate_rapid_label.hide() diff --git a/README.md b/README.md index dcec7b58..90b2adbe 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ CAD program, and create G-Code for Isolation routing. 2.02.2020 - fixed issue #376 where the V-Shape parameters from Gerber UI are not transfered to the resulting Geometry object if the 'combine' checkbox is not checked in the Gerber UI +- in Excellon UI, if Basic application mode is selected in Preferences, the Plot column 'P' is hidden now because some inexperienced users mistake this column checkboxes for tool selection 31.01.2020