theRealProHacker / Positron

With Positron you can create your own desktop app using just HTML and Python
2 stars 1 forks source link

Inline Layout #1

Closed theRealProHacker closed 1 year ago

theRealProHacker commented 2 years ago

Inline layout in this sense means several things In general, it means how to draw what text where.

  1. Select the font (family, size, weight, ...)
  2. The actual layouting: Where does every letter go. (letter widths and heights, text-align, baseline, ...)
  3. Draw the layouted letters correctly. (What happens if the selected font doesn't support the letter, etc.)
theRealProHacker commented 2 years ago

28 handles the font selection

theRealProHacker commented 1 year ago

Inline layout works in general. While there might be slight bugs from time to time, those should be handled in seperate issues.