Add missing files and place ui file in correct location

This commit is contained in:
Shai Seger
2017-10-25 15:29:05 +03:00
committed by Yorik van Havre
parent 2004a7033c
commit 0fccc2b40b
10 changed files with 528 additions and 9 deletions

View File

@@ -13,12 +13,11 @@ if FreeCAD.GuiUp:
from PySide import QtGui, QtCore
#compiled with pyrcc4 -py3 Resources\CAM_Sim.qrc -o CAM_Sim_rc.py
import CAM_Sim_rc
class CAMSimTaskUi:
def __init__(self, parent):
# this will create a Qt widget from our ui file
self.form = FreeCADGui.PySideUic.loadUi(_filePath + "/TaskPathSimulator.ui")
self.form = FreeCADGui.PySideUic.loadUi(":/panels/TaskPathSimulator.ui")
self.parent = parent
def accept(self):