def _goToGlyph(self, glyphName): widget = self.parent() font = self._glyph.font if glyphName in font: glyph = font[glyphName] glyphWindow = GlyphWindow(glyph, widget.window().parent()) glyphWindow.show()
def _glyphActivated(self, glyph): glyphWindow = GlyphWindow(glyph, self.parent()) glyphWindow.show()
def _glyphActivated(self, glyph): glyphWindow = GlyphWindow(glyph, self) glyphWindow.show()
def _glyphActivated(self, glyph): # TODO: parent should be self. make glyphWindow independent of its # parent glyphWindow = GlyphWindow(glyph, self.parent()) glyphWindow.show()