- fixed the Move Plugin to use the new setting of outline for the selection shape
This commit is contained in:
@@ -10,6 +10,7 @@ CHANGELOG for FlatCAM Evo beta
|
|||||||
19.05.2022
|
19.05.2022
|
||||||
|
|
||||||
- added a new setting that control the selection shape creation, in the Preferences. If the checkbox Selection Outline is checked then the selection shape is only an outline.
|
- added a new setting that control the selection shape creation, in the Preferences. If the checkbox Selection Outline is checked then the selection shape is only an outline.
|
||||||
|
- fixed the Move Plugin to use the new setting of outline for the selection shape
|
||||||
|
|
||||||
18.05.2022
|
18.05.2022
|
||||||
|
|
||||||
|
|||||||
@@ -340,6 +340,9 @@ class ToolMove(AppTool):
|
|||||||
# face = Color('blue')
|
# face = Color('blue')
|
||||||
# face.alpha = 0.2
|
# face.alpha = 0.2
|
||||||
|
|
||||||
|
if self.app.options['global_selection_shape_as_line'] is True:
|
||||||
|
proc_shape = proc_shape.exterior
|
||||||
|
|
||||||
face = '#0000FF' + str(hex(int(0.2 * 255)))[2:]
|
face = '#0000FF' + str(hex(int(0.2 * 255)))[2:]
|
||||||
outline = '#0000FFAF'
|
outline = '#0000FFAF'
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user