Re: [Pharo-users] Frozen at start up

2018-04-12 Thread Hilaire
It looks like deferring to the UIManager is ok for the start up. No need to fork at background user level or something like that. Le 12/04/2018 à 12:42, Hilaire a écrit :      to use the deferred action in the startup you can add it to the SessionManager >> addDeferredStartupAction:, this will

Re: [Pharo-users] Frozen at start up

2018-04-12 Thread Hilaire
Le 12/04/2018 à 12:06, teso...@gmail.com a écrit :      to use the deferred action in the startup you can add it to the SessionManager >> addDeferredStartupAction:, this will execute after all the startup actions. However, I was wrong it will not solve the problem of the splash, as the deferred

Re: [Pharo-users] Frozen at start up

2018-04-12 Thread Hilaire
Hi Pablo, I will one or the other for the Splash screen, The most annoying is the warning message at start up. Can your take a look at this app in your system if it  shows up? (the splash is off in this version, so it should not cause trouble) https://www.dropbox.com/s/te2gel05u1y1sp9/DrGeo.

Re: [Pharo-users] Frozen at start up

2018-04-12 Thread teso...@gmail.com
Hi Hilaire, to use the deferred action in the startup you can add it to the SessionManager >> addDeferredStartupAction:, this will execute after all the startup actions. However, I was wrong it will not solve the problem of the splash, as the deferred action is still running in maximum priorit

Re: [Pharo-users] Frozen at start up

2018-04-12 Thread Stephane Ducasse
Not like that. Pablo proposed to help you and he is much better than me :) I'm busy with administria. On Thu, Apr 12, 2018 at 10:38 AM, Hilaire wrote: > Hi Stef, > > No clue why I have this warning message at start up? > > Hilaire > > Le 11/04/2018 à 21:48, Stephane Ducasse a écrit : >> >> Hi hil

Re: [Pharo-users] Frozen at start up

2018-04-12 Thread Hilaire
Hi Stef, No clue why I have this warning message at start up? Hilaire Le 11/04/2018 à 21:48, Stephane Ducasse a écrit : Hi hilaire Favor Smalltalk globals at: #... over Smalltalk at: # Stef -- Dr. Geo http://drgeo.eu

Re: [Pharo-users] Frozen at start up

2018-04-11 Thread Stephane Ducasse
Hi hilaire Favor Smalltalk globals at: #... over Smalltalk at: # Stef On Wed, Apr 11, 2018 at 3:56 PM, Hilaire wrote: > Removing the Splash screen avoid locking the image. About deferred action, > how do you do it? > > However why do I have this start up message about Pharo not been properly >

Re: [Pharo-users] Frozen at start up

2018-04-11 Thread Hilaire
Removing the Splash screen avoid locking the image. About deferred action, how do you do it? However why do I have this start up message about Pharo not been properly claused? The installation of the app ends with a proper save and quit. DrGeoInstallerWorkstation>>install     super install.

Re: [Pharo-users] Frozen at start up

2018-04-10 Thread teso...@gmail.com
Hi Sean, it is the exactly the same behavior. Cheers. On Tue, Apr 10, 2018 at 11:38 PM, Sean P. DeNigris wrote: > HilaireFernandes wrote > > Any idea? > > Can you try starting with `--no-default-preferences` and see if it's the > same? > > > > - > Cheers, > Sean > -- > Sent from: http://

Re: [Pharo-users] Frozen at start up

2018-04-10 Thread Sean P. DeNigris
HilaireFernandes wrote > Any idea? Can you try starting with `--no-default-preferences` and see if it's the same? - Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] Frozen at start up

2018-04-10 Thread Hilaire
Thanks I will dig on that direction. By the way, DrGeo code at SH is obsolete. Pharo7 port is at http://dev.drgeo.eu, more precisely https://bazaar.launchpad.net/~drgeo-developers/drgeo/trunk/files/head:/src/ I should update the information page. Thanks for the tips Le 10/04/2018 à 21:36,

Re: [Pharo-users] Frozen at start up

2018-04-10 Thread teso...@gmail.com
Hi Hilaire, I have seen the same problem when trying to reproduce the error with FreeTypeFonts. I can see that the problem arise because there is a startUp of a class that is calling the #splash method. This method uses Delay. As this is run during the startup of the classes, it runs with the hig