From b68a9c2542f7ebaf89ec254165955ff994ebd3ff Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Wed, 12 Aug 2020 16:50:03 +0200 Subject: [PATCH] fix qcss bug --- pype/modules/standalonepublish/widgets/widget_drop_empty.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pype/modules/standalonepublish/widgets/widget_drop_empty.py b/pype/modules/standalonepublish/widgets/widget_drop_empty.py index a68b91da59..d352e70355 100644 --- a/pype/modules/standalonepublish/widgets/widget_drop_empty.py +++ b/pype/modules/standalonepublish/widgets/widget_drop_empty.py @@ -25,14 +25,14 @@ class DropEmpty(QtWidgets.QWidget): self._label = QtWidgets.QLabel('Drag & Drop') self._label.setFont(font) self._label.setStyleSheet( - 'background-color: rgb(255, 255, 255, 0);' + 'background-color: transparent;' ) font.setPointSize(12) self._sub_label = QtWidgets.QLabel('(drop files here)') self._sub_label.setFont(font) self._sub_label.setStyleSheet( - 'background-color: rgb(255, 255, 255, 0);' + 'background-color: transparent;' ) layout.addWidget(self._label, alignment=BottomCenterAlignment)