[Linux] After a second run it stops loading
See original GitHub issueSometimes the editor stops loading in Linux.
We don’t know the reason yet but the problem is related to restore the previous workbench state. When you close the editor it saves the state to the workspace. This state contains some information like the opened editors and views.
To get the editor to open, you should make it to load without restore this state, so you have two options:
- Execute the editor with the
-clearPersistedStateoption, to clear the state and start with a fresh workbench.
./PhaserEditor -clearPersistedState
- Execute the editor with the
-persistState falseoption. In this way the editor will not save the state when it is closed:
./PhaserEditor -persistState false
If you want to make this options by default, edit the PhaserEditor.ini file and add the following at the end:
persistState=false
clearPersistedState=true
We recommend to do both things, clear the state at the startup and disable the state saving at the closing.
Thanks to @samsstuff for report and try to fix this issue.
References: How can I prevent my workbench model from being saved on exit? https://wiki.eclipse.org/Eclipse4/RCP/FAQ
Issue Analytics
- State:
- Created 7 years ago
- Comments:8 (4 by maintainers)

Top Related StackOverflow Question
works good, tested it on manjaro xfce, no issues except remembering which is no big deal at all, a couple of clicks open the pages needed.
Thanks for the update Arian
Now I am working on linux so linux users will get a better product 😃
I will close this, I think this is not happening anymore since we updated to Eclipse Oxygen.