mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Merge pull request #646 from pypeclub/bugfix/pyblish_pype_transparent_spacer
Pyblish-pype spacer in terminal wasn't transparent
This commit is contained in:
commit
18502ce33c
1 changed files with 3 additions and 1 deletions
|
|
@ -543,7 +543,9 @@ class TerminalFilterWidget(QtWidgets.QWidget):
|
|||
layout = QtWidgets.QHBoxLayout(self)
|
||||
layout.setContentsMargins(0, 0, 0, 0)
|
||||
# Add spacers
|
||||
layout.addWidget(QtWidgets.QWidget(), 1)
|
||||
spacer = QtWidgets.QWidget()
|
||||
spacer.setAttribute(QtCore.Qt.WA_TranslucentBackground)
|
||||
layout.addWidget(spacer, 1)
|
||||
|
||||
for btn in filter_buttons:
|
||||
layout.addWidget(btn)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue