diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2015-06-02 15:15:52 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2015-06-02 15:15:52 +0000 |
| commit | f09539c4df05a270d6c24cec515c5f217166a0b0 (patch) | |
| tree | 059bc8f74496d6a5ed014d6a8cbd81600360064d /src/plugins/Ui/skinned/textscroller.cpp | |
| parent | f83a2576bd49a16e528e8cda2d76205d5db29acb (diff) | |
| download | qmmp-f09539c4df05a270d6c24cec515c5f217166a0b0.tar.gz qmmp-f09539c4df05a270d6c24cec515c5f217166a0b0.tar.bz2 qmmp-f09539c4df05a270d6c24cec515c5f217166a0b0.zip | |
skinned: fixed scroller background color
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@5074 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Ui/skinned/textscroller.cpp')
| -rw-r--r-- | src/plugins/Ui/skinned/textscroller.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/Ui/skinned/textscroller.cpp b/src/plugins/Ui/skinned/textscroller.cpp index 8fee5c739..dc7020aa9 100644 --- a/src/plugins/Ui/skinned/textscroller.cpp +++ b/src/plugins/Ui/skinned/textscroller.cpp @@ -265,7 +265,7 @@ void TextScroller::preparePixmap(const QString &text, bool scrollable) if(m_transparencyAction->isChecked()) m_pixmap.fill(Qt::transparent); else - m_pixmap.fill(QString(Skin::instance()->getPLValue("normalbg"))); + m_pixmap.fill(QString(Skin::instance()->getPLValue("mbbg"))); QPainter painter(&m_pixmap); painter.setPen(m_color); painter.setFont(m_font); @@ -282,7 +282,7 @@ void TextScroller::preparePixmap(const QString &text, bool scrollable) if(m_transparencyAction->isChecked()) m_pixmap.fill(Qt::transparent); else - m_pixmap.fill(QString(Skin::instance()->getPLValue("normalbg"))); + m_pixmap.fill(QString(Skin::instance()->getPLValue("mbbg"))); QPainter painter(&m_pixmap); painter.setPen(m_color); painter.setFont(m_font); |
