fix: the symbolrate for cable somehow got into the sat-setup and vice versa
[enigma2.git] / lib / gdi / grc.cpp
index 55d266c0359b2a59dbbffc0b094e3e1e5d95bc47..7f88402426d458119387c65d35e84257acc39b13 100644 (file)
@@ -442,7 +442,9 @@ void gDC::exec(gOpcode *o)
                if (o->parm.renderText->flags & gPainter::RT_VALIGN_CENTER)
                {
                        eRect bbox = para->getBoundBox();
-                       offset += ePoint(0, (o->parm.renderText->area.height() - bbox.height()) / 2);
+                       int vcentered_top = (o->parm.renderText->area.height() - bbox.height()) / 2;
+                       int correction = vcentered_top - bbox.top();
+                       offset += ePoint(0, correction);
                }
                para->blit(*this, offset, getRGB(m_background_color), getRGB(m_foreground_color));
                delete o->parm.renderText;