Fixed merge issues

This commit is contained in:
Markus Lampert
2018-09-02 00:31:56 -07:00
parent 67987cc916
commit ec8e97c262
3 changed files with 18 additions and 12 deletions

View File

@@ -14,7 +14,7 @@
<string>Job Edit</string>
</property>
<property name="currentIndex">
<number>0</number>
<number>2</number>
</property>
<widget class="QWidget" name="tabGeneral">
<attribute name="title">
@@ -31,8 +31,8 @@
<rect>
<x>0</x>
<y>0</y>
<width>410</width>
<height>572</height>
<width>412</width>
<height>549</height>
</rect>
</property>
<attribute name="label">
@@ -96,8 +96,8 @@
<rect>
<x>0</x>
<y>0</y>
<width>100</width>
<height>30</height>
<width>96</width>
<height>26</height>
</rect>
</property>
<attribute name="label">
@@ -189,7 +189,7 @@
<rect>
<x>0</x>
<y>0</y>
<width>414</width>
<width>418</width>
<height>762</height>
</rect>
</property>
@@ -211,6 +211,12 @@
<layout class="QHBoxLayout" name="horizontalLayout_5">
<item>
<widget class="QComboBox" name="stock">
<property name="sizePolicy">
<sizepolicy hsizetype="MinimumExpanding" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="currentIndex">
<number>2</number>
</property>
@@ -237,9 +243,9 @@
</widget>
</item>
<item>
<widget class="QPushButton" name="updateStock">
<widget class="QPushButton" name="refreshStock">
<property name="text">
<string>New</string>
<string>Refresh</string>
</property>
</widget>
</item>

View File

@@ -136,7 +136,7 @@ class ObjectOp(PathOp.ObjectOp):
'''areaOpOnDocumentRestored(obj) ... overwrite to fully restore receiver'''
pass
def opSetDefaultValues(self, obj):
def opSetDefaultValues(self, obj, job):
'''opSetDefaultValues(obj) ... base implementation, do not overwrite.
The base implementation sets the depths and heights based on the
areaOpShapeForDepths() return value.

View File

@@ -921,10 +921,10 @@ class TaskPanel:
if -1 != index:
self.template.updateUI()
def updateStock(self):
def refreshStock(self):
self.updateStockEditor(self.form.stock.currentIndex())
def centerInStock(self):
def centerInStock(self):
bbb = self.obj.Base.Shape.BoundBox
bbs = self.obj.Stock.Shape.BoundBox
by = bbs.Center - bbb.Center
@@ -1016,7 +1016,7 @@ class TaskPanel:
self.form.centerInStockXY.clicked.connect(self.centerInStockXY)
self.form.stock.currentIndexChanged.connect(self.updateStockEditor)
self.form.updateStock.clicked.connect(self.updateStock)
self.form.refreshStock.clicked.connect(self.refreshStock)
self.form.orientXAxis.clicked.connect(lambda: self.orientSelected(FreeCAD.Vector(1, 0, 0)))
self.form.orientYAxis.clicked.connect(lambda: self.orientSelected(FreeCAD.Vector(0, 1, 0)))