There is not a global preference that can be set to change this, however you can change the pull down menu to not show the default Summary platform, but instead add your own, which calls the original, which has the option overridden.
- Go to View=>Customize=>Menus and Toolbars
- Click on "Tables" to display the submenus
- Click on "Summary"
- Select the check box "Hidden"
- Click "Save"
- Now add the new summary menu by Right Clicking on the "Summary" and select "Insert After
- Click on the new entry and In the new dialog window
- Change the Internal name to "mysummary"
- Change the Caption to "My Summary"
- In the "Run this JSL:", change
print("Not implemented.");
to
summary();
win = Window( "Summary" );
(win[CheckBoxbox( 2 )]) << set( 1, 0 );
- Click Save
- Click OK
Now when you go to the Tables pull down menu, selecr My Summary, and the Link to Original will be unselected
Jim