- added a visual cue in Menu -> Edit about the entries to enter the Editor and to Save & Exit Editor. When one is enabled the other is disabled.

- grouped all the UI files in flatcamGUI folder
This commit is contained in:
Marius Stanciu
2019-03-11 12:23:26 +02:00
committed by Marius
parent 29722de6ac
commit 9d33e08ecf
25 changed files with 47 additions and 79 deletions

View File

@@ -6,20 +6,13 @@
# MIT Licence #
############################################################
from io import StringIO
from PyQt5 import QtCore, QtGui
from PyQt5.QtCore import Qt
import copy
import inspect # TODO: For debugging only.
from shapely.geometry.base import JOIN_STYLE
from datetime import datetime
import FlatCAMApp
from ObjectUI import *
from flatcamGUI.ObjectUI import *
from FlatCAMCommon import LoudDict
from FlatCAMEditor import FlatCAMGeoEditor
from camlib import *
from VisPyVisuals import ShapeCollectionVisual
import itertools
import gettext
@@ -30,6 +23,7 @@ import builtins
if '_' not in builtins.__dict__:
_ = gettext.gettext
class ObjectDeleted(Exception):
# Interrupts plotting process if FlatCAMObj has been deleted
pass