used by mainwindow.cpp and panelgenerator.cpp
| 38 | |
| 39 | //used by mainwindow.cpp and panelgenerator.cpp |
| 40 | void themeTheButton(QPushButton * button) |
| 41 | { |
| 42 | button->setCursor(Qt::PointingHandCursor); |
| 43 | button->update(); |
| 44 | return; |
| 45 | QPalette pal = button->palette(); |
| 46 | pal.setColor(QPalette::Button, QColor("#F5F5F5")); |
| 47 | button->setAutoFillBackground(true); |
| 48 | button->setPalette(pal); |
| 49 | button->setStyleSheet("QPushButton { color: white; background-color: #505F69; } QPushButton::hover { color: #BC810C; background-color: #505F69; } "); |
| 50 | |
| 51 | } |
no outgoing calls
no test coverage detected