Re: [Interest] About Qt StyleSheet

2016-05-31 Thread Berkay Elbir
Oh, I see Thank you for response. Regards, Berkay On Wed, Jun 1, 2016 at 9:07 AM, Julius Bullinger wrote: > As said in the [development] thread, this is most probably > https://bugreports.qt.io/browse/QTBUG-52230, which is fixed in Qt 5.6.1 > (to be released in a few days). > > > > Best regar

Re: [Interest] About Qt StyleSheet

2016-05-31 Thread Julius Bullinger
As said in the [development] thread, this is most probably https://bugreports.qt.io/browse/QTBUG-52230, which is fixed in Qt 5.6.1 (to be released in a few days). Best regards, Julius ___ Interest mailing list Interest@qt-project.org http://lists.qt-p

Re: [Interest] About Qt StyleSheet

2016-05-31 Thread Berkay Elbir
Hi, Actually, I think that problem is not related to any styles. If I write this: ui.newGroupNameLabel->setStyleSheet(" "); also it does not have to be QLabel. If I use QLineEdit, same problem occurs. Scenario is like that If I call this code piece in constructor than everything is fine and you

Re: [Interest] About Qt StyleSheet

2016-05-31 Thread Elvis Stansvik
2016-05-31 16:20 GMT+02:00 André Somers : > Hi, > > What I _think_ happens is that you currently are using a style that does > not support style sheets. Only build in styles do, up to a point. If you > then apply a style sheet, Qt probably switches to a fall-back style that > _does_ support style

Re: [Interest] About Qt StyleSheet

2016-05-31 Thread André Somers
Hi, What I _think_ happens is that you currently are using a style that does not support style sheets. Only build in styles do, up to a point. If you then apply a style sheet, Qt probably switches to a fall-back style that _does_ support style sheets, but that has an effect on other widgets as

[Interest] About Qt StyleSheet

2016-05-31 Thread Berkay Elbir
Hello All, I have a problem about Qt Stylesheets. I use this code piece, this is a QLabel inside a QDialog. ui.newGroupNameLabel->setStyleSheet("QLabel { color : black; }"); I also tried giving it a name usingQObject::setObjectName() and use an ID Selector to refer to it. But it still occurs. I