Procházet zdrojové kódy

Merged marius_stanciu/flatcam_beta/Beta_8.993 into Beta

Marius Stanciu před 5 roky
rodič
revize
0c30882f4b
2 změnil soubory, kde provedl 3 přidání a 2 odebrání
  1. 1 0
      CHANGELOG.md
  2. 2 2
      app_Main.py

+ 1 - 0
CHANGELOG.md

@@ -19,6 +19,7 @@ CHANGELOG for FlatCAM beta
 - remade the ReadMe tab
 - remade the ReadMe tab
 - Tool Isolation - added a GUI element to control if the isolation of a polygon, when done with rest, should be done with the current tool even if its interiors (holes in it) could not be isolated or to be left for the next tool
 - Tool Isolation - added a GUI element to control if the isolation of a polygon, when done with rest, should be done with the current tool even if its interiors (holes in it) could not be isolated or to be left for the next tool
 - updated all the translation strings to the latest changes
 - updated all the translation strings to the latest changes
+- small fix
 RELEASE 8.993
 RELEASE 8.993
 
 
 4.06.2020
 4.06.2020

+ 2 - 2
app_Main.py

@@ -3375,8 +3375,8 @@ class App(QtCore.QObject):
         # we use the following command
         # we use the following command
         minor_v = sys.version_info.minor
         minor_v = sys.version_info.minor
         if minor_v < 8:
         if minor_v < 8:
-            # sys.exit(0)
-            pass
+            # make sure that the app closes
+            sys.exit(0)
         else:
         else:
             os._exit(0)  # fix to work with Python 3.8
             os._exit(0)  # fix to work with Python 3.8