Evaluating one of the following inputs
CurrentValue[EvaluationNotebook[], WindowElements]
CurrentValue[$FrontEndSession, WindowElements]
CurrentValue[$FrontEnd, WindowElements]
Options[EvaluationNotebook[], WindowElements]
Options[$FrontEndSession, WindowElements]
Options[$FrontEnd, WindowElements]
reveals that the default notebook window contains an element called "MemoryMonitor".
I did not see any change after removing it with
CurrentValue[EvaluationNotebook[], WindowElements] =
DeleteCases[CurrentValue[EvaluationNotebook[], WindowElements], "MemoryMonitor"]
Therefore my question is:
What is "MemoryMonitor" or what's it good for and why shouldn't I remove it?
By default the special kinds of notebooks created with the following comments don't have any WindowElements:
CreatePaletteCreateWindow@PaletteNotebookCreateDialogCreateWindow@DialogNotebookMessageDialog
WindowElements? Shouldn't it be removed, if it's obsolete? It's just pollution now. – Karsten7 Oct 27 '15 at 18:42CurrentValue[$FrontEnd, WindowElements] = DeleteCases[CurrentValue[$FrontEnd, WindowElements], "MemoryMonitor"]. – Karsten7 Oct 27 '15 at 19:13