Merge pull request #1 from Rentlau/2015_02_17

- Try to fix issue with path of WorkFeature directory + myDialog handling
Extra Tools added : 
    Circle and Ellipse Tab added
    Cutting tab added
This commit is contained in:
Rentlau 2015-02-18 10:52:24 +01:00
commit fd27d90f88
4 changed files with 4234 additions and 1525 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,2 +1,18 @@
import WorkFeature
WorkFeature.WorkFeatureTab()
# -*- coding: utf-8 -*-
import sys
import os.path
try:
# try import
import WorkFeature
except:
# get the path of the current python script
m_current_path = os.path.realpath(__file__)
m_current_path = os.path.dirname(m_current_path)
# check if this path belongs to the PYTHONPATH variable and if not add it
if not sys.path.__contains__(str(m_current_path)):
sys.path.append(str(m_current_path))
# retry import now
import WorkFeature
WorkFeature.myDialog = WorkFeature.WorkFeatureTab()