From e7e7ab866425ae56b9afdc235d17d747653b2522 Mon Sep 17 00:00:00 2001 From: Marius Date: Fri, 24 Sep 2021 01:44:02 +0300 Subject: [PATCH] - in Extract Plugin some minor UI changes --- CHANGELOG.md | 6 +++++- appPlugins/ToolExtract.py | 5 +++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb53ee4c..f99cf076 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -FlatCAM BETA (c) 2019 - by Marius Stanciu +latCAM BETA (c) 2019 - by Marius Stanciu Based on FlatCAM: 2D Computer-Aided PCB Manufacturing by (c) 2014-2016 Juan Pablo Caram ================================================= @@ -7,6 +7,10 @@ CHANGELOG for FlatCAM beta ================================================= +24.09.2021 + +- in Extract Plugin some minor UI changes + 21.09.2021 - fixed an error due of missing attribute of PlotCanvasLegacy when using Legacy2D graphic engine diff --git a/appPlugins/ToolExtract.py b/appPlugins/ToolExtract.py index 0ab2666d..8145b8cd 100644 --- a/appPlugins/ToolExtract.py +++ b/appPlugins/ToolExtract.py @@ -877,6 +877,11 @@ class ToolExtract(AppTool): self.ui.ring_label.show() self.ui.ring_frame.show() + self.ui.circular_ring_entry.setEnabled(self.ui.circular_cb.get_value()) + self.ui.oblong_ring_entry.setEnabled(self.ui.oblong_cb.get_value()) + self.ui.square_ring_entry.setEnabled(self.ui.square_cb.get_value()) + self.ui.rectangular_ring_entry.setEnabled(self.ui.rectangular_cb.get_value()) + self.ui.other_ring_entry.setEnabled(self.ui.other_cb.get_value()) self.ui.prop_label.hide() self.ui.prop_frame.hide()