Browse Source

Being picky on code style

Signed-off-by: falkTX <falktx@gmail.com>
tags/v2.1-alpha1-winvst
falkTX 6 years ago
parent
commit
d660df4ef1
Signed by: falkTX <falktx@gmail.com> GPG Key ID: 2D3445A829213837
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      source/frontend/widgets/paramspinbox.py

+ 3
- 3
source/frontend/widgets/paramspinbox.py View File

@@ -291,9 +291,9 @@ class ParamSpinBox(QAbstractSpinBox):
self.fBar.setContextMenuPolicy(Qt.NoContextMenu)
#self.fBar.show()

fBarPalette = QPalette()
fBarPalette.setColor(QPalette.Window, Qt.transparent)
self.fBar.setPalette(fBarPalette)
barPalette = self.fBar.palette()
barPalette.setColor(QPalette.Window, Qt.transparent)
self.fBar.setPalette(barPalette)

self.fBox = None



Loading…
Cancel
Save