Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbertoGZ-dev committed May 9, 2023
1 parent 56f3b37 commit 54b6f6f
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 13 deletions.
Binary file modified cloneReference.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 19 additions & 13 deletions cloneReference.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,10 +159,12 @@ def __init__(self, parent=getMainWindow()):
self.setStatusBar(self.statusBar)
self.statusBar.messageChanged.connect(self.statusChanged)

# Spacer
separator = QtWidgets.QWidget()
separator.setFixedHeight(2)
separator.setStyleSheet("background-color:rgb(255,0,0)")
# Spacers
self.separator1 = QtWidgets.QWidget()
self.separator1.setFixedHeight(5)
self.separator2 = QtWidgets.QWidget()
self.separator2.setFixedHeight(5)


# Namespace type
self.namespaceLabel = QtWidgets.QLabel('Namespace: ')
Expand Down Expand Up @@ -218,16 +220,20 @@ def __init__(self, parent=getMainWindow()):
layout2.addWidget(self.namespaceLabel, 1,0)
layout2.addWidget(self.namespaceComboBox, 1,1)
layout2.addWidget(self.namespaceCustomText, 2,1)

layout2.addWidget(self.separator1, 3,0)

layout2.addWidget(self.offsetXLabel, 4,0)
layout2.addWidget(self.offsetXSpinBox, 4,1)
layout2.addWidget(self.offsetYLabel, 5,0)
layout2.addWidget(self.offsetYSpinBox, 5,1)
layout2.addWidget(self.offsetZLabel, 6,0)
layout2.addWidget(self.offsetZSpinBox, 6,1)

layout2.addWidget(self.separator2, 7,0)

layout2.addWidget(self.offsetXLabel, 3,0)
layout2.addWidget(self.offsetXSpinBox, 3,1)
layout2.addWidget(self.offsetYLabel, 4,0)
layout2.addWidget(self.offsetYSpinBox, 4,1)
layout2.addWidget(self.offsetZLabel, 5,0)
layout2.addWidget(self.offsetZSpinBox, 5,1)

layout2.addWidget(self.copiesLabel, 6,0)
layout2.addWidget(self.copiesSpinBox, 6,1)
layout2.addWidget(self.copiesLabel, 8,0)
layout2.addWidget(self.copiesSpinBox, 8,1)

layout3.addWidget(self.cloneBtn)

Expand Down
Binary file added cloneReference_outliner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 54b6f6f

Please sign in to comment.