Free cookie consent management tool by TermsFeed Policy Generator

Changeset 3396


Ignore:
Timestamp:
04/18/10 03:42:51 (14 years ago)
Author:
swagner
Message:

Implemented reviewers' comments (#893)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core.Views/3.3/NamedItemView.cs

    r3362 r3396  
    137137
    138138    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)) {
    140140        if (dialog.ShowDialog(this) == DialogResult.OK)
    141141          Content.Description = dialog.Content;
Note: See TracChangeset for help on using the changeset viewer.