Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hi Is it possible to control the text color of messages added to the status bar via @ statusBar()->showMessage("status bar message"); @
Thanks
set style sheet in designer or code:
color:rgb(255,0,0)
in designer you can access it in the status bar's property editor only, not by pop up menu
It's a widget like any other so you can just use @ statusBar()->setStyleSheet("color: red"); @
Doh! Thanks