Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/26/10 04:37:50 (14 years ago)
Author:
swagner
Message:

Adapted warning message when not all elements of the clipboard can be saved (#1155)

File:
1 edited

Legend:

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

    r4453 r4500  
    332332      if (items.Any()) {
    333333        string itemNames = string.Join(Environment.NewLine, items.Select(item => item.ToString()).ToArray());
    334         MessageBox.Show("The following items could not be saved, because they are locked (e.g. used in a running algorithm). All other items will be saved." +
    335           Environment.NewLine + itemNames, "Could not save all items", MessageBoxButtons.OK, MessageBoxIcon.Warning);
     334        MessageBox.Show("The following items are not saved, because they are locked (e.g. used in a running algorithm):" + Environment.NewLine + Environment.NewLine +
     335          itemNames + Environment.NewLine + Environment.NewLine + "All other items will be saved.", "Cannot save all items", MessageBoxButtons.OK, MessageBoxIcon.Warning);
    336336      }
    337337      Save();
Note: See TracChangeset for help on using the changeset viewer.