| 42 | } |
| 43 | |
| 44 | void QmitkColorPropertyView::DisplayColor() |
| 45 | { |
| 46 | const mitk::Color &tmp_col(m_ColorProperty->GetColor()); |
| 47 | |
| 48 | QColor color(ROUND_P(tmp_col[0] * 255.0), ROUND_P(tmp_col[1] * 255.0), ROUND_P(tmp_col[2] * 255.0)); |
| 49 | |
| 50 | m_WidgetPalette.setColor(QPalette::Window, color); |
| 51 | } |