- fixed issue #409; problem was due of an assert I used in the handler of the Menu ->Options -> Flip X(Y) menu entry
- activated and updated the editing in the Aperture Table in the Gerber Editor; not all parameters can be edited for every type of aperture - some strings updated
This commit is contained in:
@@ -3598,9 +3598,11 @@ class App(QtCore.QObject):
|
||||
|
||||
# When the main event loop is not started yet in which case the qApp.quit() will do nothing
|
||||
# we use the following command
|
||||
# sys.exit(0)
|
||||
|
||||
os._exit(0) # fix to work with Python 3.8
|
||||
minor_v = sys.version_info.minor
|
||||
if minor_v < 8:
|
||||
sys.exit(0)
|
||||
else:
|
||||
os._exit(0) # fix to work with Python 3.8
|
||||
|
||||
@staticmethod
|
||||
def kill_app():
|
||||
|
||||
Reference in New Issue
Block a user