Adrien Tétar

Results 124 comments of Adrien Tétar

Are you unable to git clone https://github.com/trufont/trufont?

> Now try to select the diacritic again. In the text tool you can move the cursor with the arrows, or you can double click to select a glyph. Is...

> so Trufont knows about glyph composition, What do you to do with glyph composition? Link base glyph and diacritics?

Is #172 related to this?

that should work in wx

> if you copy a glyph into a new glyph to work on it Why not use a layer to do that? > but if there is already stuff there...

Partly. The app also needs to respond.

ac63e80c57b37527f331b209f88d583deeeabcd3 should be enough for the app side.

decompose+remove overlap for overlapping component glyphs

``` from PyQt5.QtWidgets import QDialog, QPushButton, QVBoxLayout import random class FuzzDialog(QDialog): def __init__(self, parent=None): super(FuzzDialog, self).__init__(parent) layout = QVBoxLayout(self) fuzzBox = QPushButton("Fuzz", self) fuzzBox.clicked.connect(self.glyphFuzzer) layout.addWidget(fuzzBox) self.setLayout(layout) def glyphFuzzer(self): glyph =...