- fixing an issue with not building the UI for the generated objects when running a script and then trying to enable/disable the plots

- attempting to add a feature in the text editors to autoselect all words in a document that are the same as the one that was clicked
- all the colors set in Preferences now have to be in the 8digits format RGBA (including the alpha channel as a suffix) - it is required to delete the current preferences files
This commit is contained in:
Marius Stanciu
2022-01-17 21:26:10 +02:00
committed by Marius
parent fd696b00a2
commit 2430158334
11 changed files with 117 additions and 44 deletions

View File

@@ -120,10 +120,10 @@ class FlatCAMDefaults:
"global_sel_line": '#0000ffbf',
"global_alt_sel_fill": '#BBF268BF',
"global_alt_sel_line": '#006E20BF',
"global_draw_color": '#FF0000',
"global_sel_draw_color": '#0000FF',
"global_proj_item_color": '#000000',
"global_proj_item_dis_color": '#b7b7cb',
"global_draw_color": '#FF000080',
"global_sel_draw_color": '#0000FF80',
"global_proj_item_color": '#000000FF',
"global_proj_item_dis_color": '#b7b7cbFF',
"global_project_autohide": True,
# General App Settings
@@ -317,7 +317,7 @@ class FlatCAMDefaults:
# CNC Job General
"cncjob_plot": True,
"cncjob_tooldia": 1.0,
"cncjob_tooldia": 0.125,
"cncjob_coords_type": "G90",
"cncjob_coords_decimals": 4,
"cncjob_fr_decimals": 2,