Im working on a little program that require a QGroupBox
that have inside a QLineEdit
. I want to make "invisible" the border of the QGroupBox
using:
groupBoxName->setStyleSheet("border:0;");
The problem is that even the QLineEdit
inside of it inherit this style.
How can I make invisible the QGroupBox
border but not the QLineEdit
border?
Thanks