Rick Blommers

Results 115 comments of Rick Blommers

Well after some debugging I found the following 'problem'. On Windows the default QIcon::State of a QPushButton seems to be 'active' So the button gets the color of the option...

Read some more about this active state. The QPushButton is active if it has focus. Probably your button is the only button on the screen and has got the keyboard...

Did you try this on your action? ``` c++ action->setIconVisibleInMenu(true); ``` Qt hide's menu icons by default on OSX

Very strange. The good new is the same thing happens over here! I don't have an explanation for it right now. When I use a standard icon it is shown,...

I've found a workaround for this issue: Using pixmap seems to fix it ?!? ``` c++ action->setIcon(awesome->icon(fa::beer).pixmap(32,32)); ``` (QPixmap is implicitly converted to QIcon) It looks like the QMenu of...

I don't know if it's Mac OS X Related. It's an assumption of me... (because I think the Mac OS X menu is not rendered by Qt but by the...

I've just checked the situation on Windows 10. There it simply works. It is a Mac OS X related, issue. I just added the workaround to the README file.

@SylvainCorlay, Thanks! I would really appreciate that!

Thanks for this info!! I will check it out later today!

Tried the addApplicationFont, but got no results with the MainMenu... Tried placing the Font Loading before the window creation. Same result. So no solution yet... (except for adding the .pixmap(...