How to continue gradient to other Widget?
Solved
General and Desktop
-
Hello,
I have 2 widgets: QScrollArea and a QWidget in this area.
In this 2 widgets I set the same background ( gradient - for example green to yellow ). But I get something like this:
( the red circle is QScrollArea, blue circle is QWidget; QScrollArea is bigger than QWidget )
I would like to get:
So I would like to continue gradient from left side QScrollArea to right side of QWidget.
Is it possible?
EDIT I set the background using setStyleSheet
-
@TomNow99
thinking simpler, you want the gradient on the very most background widget and the widgets on top with transparent background? -
@raven-worx Yeah, and this was the trick - set transparent background. Thank you!