X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/6c2d3fc303542b7f77f4350974acf781a1b91c30..fce04ebed510a97e17f019a35c327dce78b6d916:/lib/gui/ewindow.cpp diff --git a/lib/gui/ewindow.cpp b/lib/gui/ewindow.cpp index 112b82d7..4cb2e76f 100644 --- a/lib/gui/ewindow.cpp +++ b/lib/gui/ewindow.cpp @@ -52,6 +52,13 @@ std::string eWindow::getTitle() const return m_title; } +void eWindow::setBackgroundColor(const gRGB &col) +{ + /* set background color for child, too */ + eWidget::setBackgroundColor(col); + m_child->setBackgroundColor(col); +} + void eWindow::setFlag(int flags) { m_flags |= flags;