- fixed a bug in Gerber merge
- bypassed a bug in FlatCAM Gerber UI - its not really fixed (it's a crash in build UI when disconnecting signals due of the wrapped C++ object already destroyed)
This commit is contained in:
@@ -993,7 +993,10 @@ class ObjectCollection(QtCore.QAbstractItemModel):
|
||||
return
|
||||
|
||||
if obj:
|
||||
obj.build_ui()
|
||||
try:
|
||||
obj.build_ui()
|
||||
except RuntimeError:
|
||||
pass
|
||||
|
||||
self.app.proj_selection_changed.emit(current, previous)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user