Modal dialogs and El Capitan

RoboFont Forums Bugs Modal dialogs and El Capitan

This topic contains 2 replies, has 2 voices, and was last updated by  Jeremie 4 years, 9 months ago.

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #6195

    Jeremie
    Member

    Hi Frederik,

    Just upgraded to El Capitan and noticed that the floating window ‘Loading UI…”, “Loading UFO…” is not showing anymore when opening UFOs with RoboFont.
    And I am experiencing a similar issue in my own extensions with Vanilla’s Floating windows not showing up anymore and also with ProgressBars.
    It seems that windows opened/closed before the main loop has no occasion to be drawn…

    Any idea ? Cocoa changes in El Capitan ?

    thanks,
    Jérémie

    #6196

    frederik
    Keymaster

    oh, I guess changes in the os…

    It seems this opens the window after the script is done.
    Pretty annoying

    from vanilla import *
    import time
    
    w = Window((250, 70))
    w.p = ProgressBar((10, 10, -10, 22), maxValue=20)
    w.p.start()
    
    w.open()
    
    
    for i in range(20):
        time.sleep(.05)
        w.p.increment()
    
    #6218

    Jeremie
    Member

    Any chance that could be fixed for 1.7 release ?

Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.