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.
    DrGDefault beWorkstation.
    self cleanUpForRelease.
    Author fullName: 'MrCleaner'.
    Smalltalk saveAs: 'drgeo'.
    World submorphs
        select: [:m | m class == (Smalltalk at: #DrGeoWindow)]
        thenDo: [:drMorph | drMorph deleteWithoutConfirmation ].

    self cleanMySelf.
    Smalltalk fixObsoleteReferences.
    Smalltalk garbageCollect.
    Smalltalk garbageCollect.
    Smalltalk garbageCollect.

    PharoChangesCondenser condense.
    ExternalDropHandler registerHandler:
        (ExternalDropHandler
            type: nil
            extension: 'fgeo'
            action: [ :stream | DrGeo fullscreenOn: stream ]).

    Smalltalk snapshot: true andQuit: true.


What is even strange, when I run the buid in the system building it, this message does not show up?

Any idea?

Thanks

Hilaire

Le 10/04/2018 à 21:36, teso...@gmail.com a écrit :
In Pharo 7 the startup of the session runs in higher priority so it cannot be interrupted. This is done in that way to fix some problems during the initialization of the session (Now, I could not remember what was fixed).

--
Dr. Geo
http://drgeo.eu



Reply via email to