diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-05-14 21:47:05 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-05-14 21:47:05 +0000 |
| commit | 505654a8df4293feffc1ae477f7068a79f08853b (patch) | |
| tree | 80bb7f609708fe02d7933410c3643ed3601a1b99 /lib/gui/eslider.cpp | |
| parent | 4438bf2708045c28b32839ae840866d861bace03 (diff) | |
| download | enigma2-505654a8df4293feffc1ae477f7068a79f08853b.tar.gz enigma2-505654a8df4293feffc1ae477f7068a79f08853b.zip | |
paint with alphatest when transparency enabled
Diffstat (limited to 'lib/gui/eslider.cpp')
| -rw-r--r-- | lib/gui/eslider.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gui/eslider.cpp b/lib/gui/eslider.cpp index 7f3bb348..df199c47 100644 --- a/lib/gui/eslider.cpp +++ b/lib/gui/eslider.cpp @@ -44,7 +44,7 @@ int eSlider::event(int event, void *data, void *data2) if (!m_pixmap) painter.fill(m_currently_filled); else - painter.blit(m_pixmap, ePoint(0, 0), m_currently_filled.extends); + painter.blit(m_pixmap, ePoint(0, 0), m_currently_filled.extends, isTransparent() ? gPainter::BT_ALPHATEST : 0); // border if (m_have_border_color) |
