Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Users
    • Solved
    • Unsolved
    1. Home
    2. Categories
    3. Feature Requests
    Log in to post

    Feature Requests

    • StephenNixon

      SOLVED Request: an alert when a short key is already taken by another menu item + a view of all short keys in use
      preferences keyboard shortcuts • • StephenNixon  

      6
      0
      Votes
      6
      Posts
      1040
      Views

      StephenNixon

      Oh nice! This will be super handy. :)
    • frankrolf

      SOLVED Guideline Magnetism
      guidelines • • frankrolf  

      3
      0
      Votes
      3
      Posts
      812
      Views

      frederik

      FYI: in the upcoming release RF3.1 both the magnetic as the show measurements attributes of a guideline will be part of the preferences: defaultGuidelineShowMeasurment defaultGuidelineMagnetic to change the default use, or the preference json editor (alt click the Preferences menu item): from mojo.ui import setDefault setDefault("defaultGuidelineMagnetic", 0)
    • erik

      SOLVED Observer for selection in Font window?
      observers selection feature request fontwindow • • erik  

      2
      0
      Votes
      2
      Posts
      1105
      Views

      frederik

      that would be currentGlyphChanged...
    • mjarboe

      SOLVED Font Info
      font info • • mjarboe  

      3
      0
      Votes
      3
      Posts
      1268
      Views

      frederik

      more options: # get the source font f1 = AllFonts().getFontsByStyleName('Regular')[0] # get the destination font f2 = AllFonts().getFontsByStyleName('Bold')[0] f1.info.update(f2)
    • mjarboe

      SOLVED Test Install
      test install • • mjarboe  

      2
      0
      Votes
      2
      Posts
      672
      Views

      gferreira

      that can be acomplished with a script: for f in AllFonts(): f.testInstall()
    • rbmntjs

      Tool tip or similar to reveal, for example, which name table entry is which
      user interface font info • • rbmntjs  

      2
      0
      Votes
      2
      Posts
      1154
      Views

      frederik

      I will add this to the to-do list. The tooltip could refer to the UFO info attribute. Also see https://doc.robofont.com/documentation/workspace/font-info/ for detailed documentation Thanks
    • bahman

      OpenWindow with update
      scripting user interface • • bahman  

      3
      0
      Votes
      3
      Posts
      633
      Views

      bahman

      Is there any update on this. I'm trying to make a sub class of BaseWindowController to run a method if the window is already open. Still OpenWindow returns None. Thanks
    • nina

      Delete point & approximate existing curve
      scripting contours • • nina  

      2
      0
      Votes
      2
      Posts
      633
      Views

      frederik

      mmm, not directly from the robofab objects but you could use the naked object g = CurrentGlyph() # remove the first segment from the first contour g[0].naked().removeSegment(0, preserveCurve=True) good luck!
    • bahman

      Override a default shortcut
      keyboard shortcuts saving • • bahman  

      6
      0
      Votes
      6
      Posts
      946
      Views

      frederik

      if you want to receive those notifications, just add this .py file to the start up scripts in your preferences. This doesn't effect performance, unless to your part of the code, what is been executed when the notification is been send, takes a while.
    • nina

      Modify glyph copy/paste behavior for custom contexts?
      user interaction • • nina  

      3
      0
      Votes
      3
      Posts
      758
      Views

      nina

      Thanks Frederik. That’s a very useful start. I see it does not inherit/use the text attribute of the Vanilla EditText, which I need, but I guess I’ll look into making a subclass of my own ... maybe for the version after next ;)
    • niels

      Separate metrics for layers?
      layers metrics ufo3 • • niels  

      3
      0
      Votes
      3
      Posts
      636
      Views

      niels

      Okay. I think I do understand. So thank you for pointing out and thanks in [hopefully not indefinite] advance for doing that UFO3 implementation :D
    • nina

      MultilineView with Space Matrix?
      scripting space center • • nina  

      3
      0
      Votes
      3
      Posts
      649
      Views

      nina

      Cool. Thank you Frederik!
    • rbmntjs

      Pop out Kerning and Groups
      user interface kerning groups • • rbmntjs  

      3
      0
      Votes
      3
      Posts
      698
      Views

      rbmntjs

      Like a charm. Thanks a lot!
    • bas

      Some Cosmetic RoboFont Enhancements
      user interaction measuring • • bas  

      7
      0
      Votes
      7
      Posts
      960
      Views

      frederik

      He I've added those as hot keys to the prefs, will be available in the next update that is idd handy that one can toggle while measuring thanks
    • nina

      Search Mark Color
      user interface colors • • nina  

      2
      0
      Votes
      2
      Posts
      581
      Views

      frederik

      you can always use "contains" or "match" options but it would be idd a lot nicer when the colors are updated when ever a glyph.mark is added or changed...
    • jo

      SOLVED 'safe mode'
      extensions safe mode • • jo  

      3
      0
      Votes
      3
      Posts
      563
      Views

      jo

      As always, thanks a lot for your fast reply and taking this under consideration. jo
    • nina

      Layer palette size in Inspector
      preferences inspector • • nina  

      2
      0
      Votes
      2
      Posts
      607
      Views

      frederik

      for now only the close/open state of a panel inside the inspector window is saved to the user defaults. Not the the size. Will think about it :)
    • jo

      Tabs in scripting window
      scripting user interface • • jo  

      5
      0
      Votes
      5
      Posts
      686
      Views

      frederik

      that would be nice :) as it is now you can open your script browser (see button on the bottom left of the scripting window) and switch from script to script...
    • jo

      Lock Image behavior
      user interaction images • • jo  

      2
      0
      Votes
      2
      Posts
      539
      Views

      frederik

      This is a known issue and will be solved in the next update. The next update will deselect the image when "Lock Image" is enabled. thanks
    • rbmntjs

      Performance for glyphs with many points
      points performance • • rbmntjs  

      5
      0
      Votes
      5
      Posts
      760
      Views

      frederik

      good you found it! "printing" a traceback is very costly, but handy so you know what went wrong