2010/9/26 François Tanguy <[email protected]>: > Here is what I did: > 1) Open a workspace / save the image > 2) edit the workspace / save Cmd + S > 3) quit Pharo without saving > 4) Open pharo -> the workspace is empty
Of course :) You discarded the state of all the objects you created or modified during your Pharo session. There is no object representing workspace anymore. The same result will be if you add some method to some class, after image restart (without saving) there will be no such method. In this case you can use Recover Lost Changes tool to restore your method from .changes file. But in case of workspace you should *explicitely* save it into a file (using a window menu). And after image restart you will be able to restore it from that file. _______________________________________________ Pharo-project mailing list [email protected] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
