diff options
Diffstat (limited to 'src/projManagement')
-rw-r--r-- | src/projManagement/Kicad.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/projManagement/Kicad.py b/src/projManagement/Kicad.py index c2a0c948..41fb8d79 100644 --- a/src/projManagement/Kicad.py +++ b/src/projManagement/Kicad.py @@ -29,7 +29,7 @@ class Kicad: def __init__(self,dockarea): self.obj_validation = Validation.Validation() self.obj_appconfig = Appconfig() - self.obj_dockarea=dockarea + self.obj_dockarea= dockarea def openSchematic(self): """ @@ -60,7 +60,8 @@ class Kicad: self.msg.setWindowTitle("Error Message") - + ''' + #Commenting as it is no longer needed as PBC and Layout will open from eeschema def openFootprint(self): """ This function create command to open Footprint editor @@ -115,6 +116,8 @@ class Kicad: self.msg.showMessage('Please select the project first. You can either create new project or open existing project') self.obj_appconfig.print_warning('Please select the project first. You can either create new project or open existing project') self.msg.setWindowTitle("Error Message") + + ''' def openKicadToNgspice(self): """ |