Andreas Raab uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-ar.130.mcz==================== Summary ====================
Name: Tools-ar.130
Author: ar
Time: 4 October 2009, 9:28:44 am
UUID: d254f675-59a5-3c44-89fe-75a7dc68020a
Ancestors: Tools-dtl.129
The Inspector code pane shouldn't ask before discarding edits.
=============== Diff against Tools-dtl.129 ===============
Item was changed:
----- Method: Inspector>>buildCodePaneWith: (in category 'toolbuilder') -----
buildCodePaneWith: builder
| textSpec |
textSpec := builder pluggableTextSpec new.
textSpec
model: self;
getText: #trash;
setText: #trash:;
selection: #contentsSelection;
+ menu: #codePaneMenu:shifted:;
+ askBeforeDiscardingEdits: false.
- menu: #codePaneMenu:shifted:.
^textSpec!