From a6ac8874e79ab8cecf1007be803be7a043e14923 Mon Sep 17 00:00:00 2001 From: jdegenstein Date: Mon, 3 Oct 2022 19:42:54 -0500 Subject: [PATCH] Update default color to #FF0 to work with pyqtgraph=0.13+ --- cq_editor/widgets/viewer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cq_editor/widgets/viewer.py b/cq_editor/widgets/viewer.py index f788fb1..2cf2d64 100644 --- a/cq_editor/widgets/viewer.py +++ b/cq_editor/widgets/viewer.py @@ -38,7 +38,7 @@ class OCCViewer(QWidget,ComponentMixin): {'name': 'Use gradient', 'type': 'bool', 'value': False}, {'name': 'Background color', 'type': 'color', 'value': (95,95,95)}, {'name': 'Background color (aux)', 'type': 'color', 'value': (30,30,30)}, - {'name': 'Default object color', 'type': 'color', 'value': "FF0"}, + {'name': 'Default object color', 'type': 'color', 'value': "#FF0"}, {'name': 'Deviation', 'type': 'float', 'value': 1e-5, 'dec': True, 'step': 1}, {'name': 'Angular deviation', 'type': 'float', 'value': 0.1, 'dec': True, 'step': 1}, {'name': 'Projection Type', 'type': 'list', 'value': 'Orthographic',