Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Users
    • Solved
    • Unsolved
    1. Home
    2. Categories
    3. Problems & Bugs
    Log in to post

    Problems & Bugs

    • RafaŁ Buchner

      SOLVED ufoProcessor: plist lib deprecationwarning
      scripting warning • • RafaŁ Buchner  

      4
      0
      Votes
      4
      Posts
      321
      Views

      frederik

      or open an issue for ufoProcessor to fix that warning :)
    • bahman

      SOLVED Programmatically change menu shortcuts
      preferences keyboard shortcuts • • bahman  

      6
      0
      Votes
      6
      Posts
      385
      Views

      bahman

      Alright, I will consider this for my extension until it gets fixed. These are awaited features for me and very much appreciated.
    • colinmford

      SOLVED <module> error: X is overriding existing Objective-C class
      scripting • • colinmford  

      3
      0
      Votes
      3
      Posts
      360
      Views

      colinmford

      Thanks, @frederik! I had no idea about the metaclass before, seems pretty useful for debugging.
    • bas

      SOLVED Installing site-packages on Mojave
      py3 • • bas  

      3
      0
      Votes
      3
      Posts
      239
      Views

      gferreira

      some additional info from @frederik: both RoboFont and DrawBot look at the sitepackages folder for the same Python version as the one embedded in the app currently Python 3.6 is embedded, so in Mojave one would have to install py3.6 in order to have RF access packages in 3.6/sitepackages… back to your question: How do I install site-packages in RF3 on Mojave, which comes with Python 3.7? if you don’t want to install py3.6, use the external_packages folder install Python 3.6, and then install custom libraries in 3.6/sitepackages
    • grahambradley

      SOLVED Unopenable UFO from font.interpolate()
      fontparts interpolation • • grahambradley  

      4
      1
      Votes
      4
      Posts
      417
      Views

      grahambradley

      Ah cool. Thank you!
    • odiceline

      SOLVED Auto remove of overlaps in ufo after creating otf
      font generation remove overlap batch extension • • odiceline  

      11
      0
      Votes
      11
      Posts
      684
      Views

      frederik

      super! enjoy batching
    • ryan

      UNSOLVED Glitch when hovering over guides
      guidelines • • ryan  

      12
      0
      Votes
      12
      Posts
      819
      Views

      ryan

      Yeah there it is.
    • MBurvill

      UNSOLVED Slow app activation (when scripting window(s) open?)
      performance scripting window • • MBurvill  

      4
      0
      Votes
      4
      Posts
      342
      Views

      frederik

      very strange indeed... I cannot reproduce this on 10.13, will try on a 10.14 later on today.
    • connor

      SOLVED Glyph Editor View Cropped
      user interface preferences glyph editor • • connor  

      3
      0
      Votes
      3
      Posts
      314
      Views

      connor

      @ryan Thanks so much for the help, Ryan. I totally looked right past those input fields lol
    • RafaŁ Buchner

      UNSOLVED Lists in Accordion View are buggy
      accordion view • • RafaŁ Buchner  

      6
      0
      Votes
      6
      Posts
      519
      Views

      frederik

      This should be fixed in the next beta...
    • RafaŁ Buchner

      SOLVED import of glyphNameFormatter.reader crashes RF
      glyph name formatter • • RafaŁ Buchner  

      5
      0
      Votes
      5
      Posts
      485
      Views

      frederik

      will post a public beta later on today!
    • jo

      UNSOLVED error message when generating otf
      font generation • • jo  

      3
      0
      Votes
      3
      Posts
      404
      Views

      frederik

      but having a control char somewhere in the font info is never a good plan (you have the control character 0x80 somewhere)
    • jo

      UNSOLVED fontinfo > woff > description > URL
      font info woff • • jo  

      2
      0
      Votes
      2
      Posts
      302
      Views

      frederik

      woff meta data text descriptions seems to be required. But the font info sheet should not fail so hard... also see https://github.com/robotools/defconAppKit/issues/26
    • FosterType

      SOLVED The document could not be saved.
      font info saving • • FosterType  

      2
      0
      Votes
      2
      Posts
      306
      Views

      frederik

      Somehow something wrote a wrong value somewhere in the font.info, I know this is not helpful. This is not possible with the font info sheet as everything is either validated or normalised when setting into the font info. Does the font info sheet open for this font? You can test where it goes wrong or which attribute has the wrong value with this script: from fontTools.ufoLib import fontInfoAttributesVersion3 # get the current font f = CurrentFont() # to test set a wrong value somewhere # f.naked().info.styleName = 1234 # loop over all attributes for attr in fontInfoAttributesVersion3: # ignore the guidelines if attr == "guidelines": continue # get the attribute from font info getattr(f.info, attr) when # f.naked().info.styleName = 1234 is uncommented you should receive this error message: Traceback (most recent call last): File "<untitled>", line 6, in <module> File "info.py", line 38, in setter raise ValueError("Invalid value ({0}) for attribute {1}.".format(repr(value), name)) ValueError: Invalid value (1234) for attribute styleName.
    • rutherford

      SOLVED Crash when dragging column headers in font overview list mode
      crash • • rutherford  

      4
      0
      Votes
      4
      Posts
      367
      Views

      frederik

      found and fixed, thanks for reporting
    • RafaŁ Buchner

      SOLVED RoboFont 3.2b won’t launch!!!
      extensions ufo • • RafaŁ Buchner  

      3
      0
      Votes
      3
      Posts
      397
      Views

      RafaŁ Buchner

      Yeah, I did that. But I had to use Time Machine. I think that the problem wasn't related to the extensions after all. At least directly. Something tells me that I messed up with ufo file, and that is the reason why RF crashed in the first place. Since then RF was trying to retrieve the ufo files that were open before the crash. It created the loop, where RF was crashing every time while it was opening.
    • ryan

      SOLVED Anchor coordinates positioned in the same place as anchor name
      user interface anchors • • ryan  

      2
      0
      Votes
      2
      Posts
      463
      Views

      frederik

      This is fixed in the dev beta. A fresh public beta will appear shortly thanks
    • micahmicah

      SOLVED Glyph Labels Not Copying?
      layers labels • • micahmicah  

      3
      0
      Votes
      3
      Posts
      507
      Views

      micahmicah

      @gferreira said in Glyph Labels Not Copying?: f.insertGlyph(g, name='b') Ah wonderful. This worked great. Thank you!
    • FosterType

      SOLVED Copy / Swap to Layer deletes local guides
      layers guidelines • • FosterType  

      3
      0
      Votes
      3
      Posts
      449
      Views

      FosterType

      Hey Gustavo, Thanks for that, works great. D
    • ryan

      SOLVED Space Center not reflecting (all) glyph changes
      space center preferences • • ryan  

      5
      1
      Votes
      5
      Posts
      534
      Views

      frederik

      the default is 30... this value is set with the idea: you want to see short words while editing, longer text for only spacing.