- fixed the Follow plugin not marking correctly the resulting Geometry objet as a multigeo

- fixed the Cutout plugin not working with Geometry objects that are made out of a MultiLineString
This commit is contained in:
Marius Stanciu
2022-01-25 22:31:50 +02:00
committed by Marius Stanciu
parent 6cdb276a08
commit ff805880e1
4 changed files with 23 additions and 7 deletions

View File

@@ -375,9 +375,9 @@ class ExcellonGenPrefGroupUI(OptionsGroupUI):
# set Excellon path optimizations algorithm to TSA if the app is run on a 32bit platform
# modes 'M' or 'B' are not allowed when the app is running in 32bit platform
if val in ['M', 'B']:
self.opt_algorithm_radio.blockSignals(True)
self.excellon_optimization_radio.blockSignals(True)
self.excellon_optimization_radio.set_value('T')
self.opt_algorithm_radio.blockSignals(False)
self.excellon_optimization_radio.blockSignals(False)
if val == 'M':
self.optimization_time_label.setDisabled(False)