I\'m trying to change the background color of the QLineEdit and I can\'t figure it out at all.
QLineEdit
I tried using stylesheets originally like th
stylesheets
I had to use background-color from standard css like this:
QLineEdit* edit = new QLineEdit(); edit->setStyleSheet("QLineEdit {background-color: black;}");
I am using Qt 5.4