diff --git a/README.md b/README.md index 45da11b2..34199dc1 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,7 @@ CAD program, and create G-Code for Isolation routing. - updated Optimal Tool to display both points coordinates that made a distance (and the minimum) not only the middle point (which is still the place where the jump happen) - added a dark theme to FlatCAM (only for canvas). The selection is done in Edit -> Preferences -> General -> GUI Settings - updated the .POT file and worked a bit in the romanian translation +- small changes: reduced the thickness of the axis in 3D mode from 3 pixels to 1 pixel 6.10.2019 diff --git a/flatcamGUI/VisPyCanvas.py b/flatcamGUI/VisPyCanvas.py index 69da82c9..7350e872 100644 --- a/flatcamGUI/VisPyCanvas.py +++ b/flatcamGUI/VisPyCanvas.py @@ -55,13 +55,13 @@ class VisPyCanvas(scene.SceneCanvas): top_padding.height_max = 0 self.yaxis = scene.AxisWidget( - orientation='left', axis_color=tick_color, text_color=tick_color, font_size=a_fsize + orientation='left', axis_color=tick_color, text_color=tick_color, font_size=a_fsize, axis_width=1 ) self.yaxis.width_max = 55 self.grid_widget.add_widget(self.yaxis, row=1, col=0) self.xaxis = scene.AxisWidget( - orientation='bottom', axis_color=tick_color, text_color=tick_color, font_size=a_fsize, + orientation='bottom', axis_color=tick_color, text_color=tick_color, font_size=a_fsize, axis_width=1, anchors=['center', 'bottom'] ) self.xaxis.height_max = 30