I have noticed that objects, after their labels have been clear, show in label view, rather than spreadsheet view, when they are double-clicked.
Example: After the code below has been executed, the series tmp is shown in spreadsheet view when double-clicked.
Code: Select all
close @all
pagecreate q 1990 2010
series tmp=0
However, once the code is expanded with a label clear, tmp is shown in label view when double-clicked.
Code: Select all
close @all
pagecreate q 1990 2010
series tmp=0
tmp.label(c)
Is this behavior intentional or is it a bug? In case it is intentional, is there some way to "programmatically" reset the view to spreadsheet? (Preferably without having to open the object.)