Changeset 3396 for trunk/sources
- Timestamp:
- 04/18/10 03:42:51 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Core.Views/3.3/NamedItemView.cs
r3362 r3396 137 137 138 138 protected void descriptionTextBox_DoubleClick(object sender, EventArgs e) { 139 using (TextDialog dialog = new TextDialog("Description of " + Content.Name, Content.Description, ReadOnly || !Content.CanChangeDescription)) {139 using (TextDialog dialog = new TextDialog("Description of " + Content.Name, descriptionTextBox.Text, ReadOnly || !Content.CanChangeDescription)) { 140 140 if (dialog.ShowDialog(this) == DialogResult.OK) 141 141 Content.Description = dialog.Content;
Note: See TracChangeset
for help on using the changeset viewer.