- in Geometry UI and in Drilling Tool added ability to edit existing Exclusion Areas and change the Strategy and OverZ parameters for each of them

- in Geometry UI and in Drilling Tool added a Delete menu entry in the Exclusion Area Table context menu
This commit is contained in:
Marius Stanciu
2020-11-12 23:42:26 +02:00
committed by Marius
parent dea7ce3028
commit 21db5d9528
6 changed files with 220 additions and 32 deletions

View File

@@ -2167,8 +2167,8 @@ class FCComboBox(QtWidgets.QComboBox):
class FCComboBox2(FCComboBox):
def __init__(self, parent=None, callback=None):
super(FCComboBox2, self).__init__(parent=parent, callback=callback)
def __init__(self, parent=None, callback=None, policy=True):
super(FCComboBox2, self).__init__(parent=parent, callback=callback, policy=policy)
def get_value(self):
return int(self.currentIndex())