X-Git-Url: http://code.vuplus.com/gitweb/?a=blobdiff_plain;f=lib%2Fgui%2Felabel.cpp;fp=lib%2Fgui%2Felabel.cpp;h=3cec3a1cdc4003313ba47a706b62fe9ad4dd19dc;hb=73c8ccf2a900e59f8450ddad57b80a215bb658b4;hp=970669c126b688bf70099979a6da40c864cfe0d1;hpb=b4448ddb042e5f5015125597633e368f17acbcec;p=vuplus_dvbapp diff --git a/lib/gui/elabel.cpp b/lib/gui/elabel.cpp index 970669c..3cec3a1 100644 --- a/lib/gui/elabel.cpp +++ b/lib/gui/elabel.cpp @@ -37,13 +37,18 @@ int eLabel::event(int event, void *data, void *data2) para->setFont(m_font); para->renderString(m_text, 0); para->realign(eTextPara::dirLeft); + int glyphs = para->size(); - para->setGlyphFlag(m_pos, GS_INVERT); - eRect bbox; - bbox = para->getGlyphBBox(m_pos); - printf("BBOX: %d %d %d %d\n", bbox.left(), 0, bbox.width(), size().height()); - bbox = eRect(bbox.left(), 0, bbox.width(), size().height()); - painter.fill(bbox); + if ((m_pos < 0) || (m_pos >= glyphs)) + eWarning("glyph index %d in eLabel out of bounds!"); + else + { + para->setGlyphFlag(m_pos, GS_INVERT); + eRect bbox; + bbox = para->getGlyphBBox(m_pos); + bbox = eRect(bbox.left(), 0, bbox.width(), size().height()); + painter.fill(bbox); + } painter.renderPara(para, ePoint(0, 0)); return 0;