- updated the SVG parser to take into consideration the 'Close' svg element and paths that are made from a single line (we may need to switch to svgpathtools module)

This commit is contained in:
Marius Stanciu
2020-04-01 00:09:50 +03:00
committed by Marius
parent 9a74139497
commit 1d13b997f2
3 changed files with 37 additions and 6 deletions

View File

@@ -5323,8 +5323,8 @@ class App(QtCore.QObject):
# try to quit the Socket opened by ArgsThread class
try:
self.new_launch.listener.close()
except Exception:
pass
except Exception as err:
log.debug("App.quit_application() --> %s" % str(err))
# quit app by signalling for self.kill_app() method
self.close_app_signal.emit()