Scroll to highlighted glyphs.

This commit is contained in:
Andrey Golovizin 2014-08-18 17:52:39 +02:00
parent ae20b22229
commit 6d824a46d6

View file

@ -93,6 +93,7 @@ class PageScene(QGraphicsScene):
def highlightGlyph(self, glyph):
rect = self.addRect(glyph.x - 1, glyph.y - 1, glyph.width + 1, glyph.height + 1, self.glyphPen, self.glyphBrush)
rect.ensureVisible()
self.highlightedGlyphs[glyph] = rect
def clearHighlight(self):