From c74814cb00f7eb791df10e7432dd60d6b152ca14 Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Fri, 27 Dec 2019 05:00:30 +0200 Subject: [PATCH] - fixed some typos --- README.md | 1 + flatcamEditors/FlatCAMGrbEditor.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a817c859..2c3cf8fd 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ CAD program, and create G-Code for Isolation routing. 27.12.2019 - updated the POT file and the translation files for German, Spanish and French languages +- fixed some typos 26.12.2019 diff --git a/flatcamEditors/FlatCAMGrbEditor.py b/flatcamEditors/FlatCAMGrbEditor.py index c767bd4b..c3477d2d 100644 --- a/flatcamEditors/FlatCAMGrbEditor.py +++ b/flatcamEditors/FlatCAMGrbEditor.py @@ -201,7 +201,7 @@ class FCPad(FCShapeTool): QtGui.QGuiApplication.restoreOverrideCursor() except Exception as e: pass - self.cursor = QtGui.QCursor(QtGui.QPixmap(self.app.resource_location + '/aero_circle.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_circle.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) try: @@ -425,7 +425,7 @@ class FCPadArray(FCShapeTool): QtGui.QGuiApplication.restoreOverrideCursor() except Exception as e: pass - self.cursor = QtGui.QCursor(QtGui.QPixmap(self.app.resource_location + '/aero_array.png')) + self.cursor = QtGui.QCursor(QtGui.QPixmap(self.draw_app.app.resource_location + '/aero_array.png')) QtGui.QGuiApplication.setOverrideCursor(self.cursor) self.storage_obj = self.draw_app.storage_dict[self.draw_app.last_aperture_selected]['geometry']