GlyphDBEdit: show newest glyphs on top.

This commit is contained in:
Andrey Golovizin 2014-09-01 18:11:41 +02:00
parent 892038f65b
commit bcc0b86001

View file

@ -37,6 +37,7 @@ class GlyphDBModel(QAbstractTableModel):
super().__init__(parent)
self.glyphdb = glyphdb
self.values = list(glyphdb.values())
self.values.reverse()
def rowCount(self, parent):
return len(self.values)