Hi all!
I have a problem styling the background of a QToolBar on Mac
OSX. I'm using Qt 4.8.1 and Mac OS X 10.7
I set a global qss stylesheet for my application and
everything works just fine. The only thing that does not
have any effect is the background part of the QToolBar. I
can still set the padding or height or anything but the
background...
Here's the part of my stylesheet responsible for the
toolbar:
|
Source code
|
1
2
3
4
5
6
|
QWidget#toolBarMainView{
padding-top:0px;
min-height:42px;
background-image:url(:/images/recources/img/assets/toolbar/background_img.png);
background-repeat: repeat-xy;
}
|
By the way: Im also using the same stylesheet and code for
the application in windows. And in windows this problem does
not occur.
I have already googled for this problem and i found a
bugreport for this issue
(
https://bugreports.qt-project.org/browse/QTBUG-12717).
Does anyone know if this bug has been resolved and the
problem is in my code or if the bug is still in qt?
Thanks in advance for any hints or tips,
Urchulak