Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/07/14 10:36:52 (10 years ago)
Author:
jkarder
Message:

#2136:

  • fixed tool tips
  • added Clear() method to remove all variables present in the VariableStore
  • the script cannot be compiled and started with the shortcuts anymore if it is already running
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Scripting.Views/3.3/VariableStoreView.cs

    r10577 r10727  
    2121
    2222using System;
    23 using System.Collections;
    2423using System.Collections.Generic;
    2524using System.Drawing;
     
    396395      string toolTipText = string.Join(Environment.NewLine, lines);
    397396      if (!serializable)
    398         toolTipText += Environment.NewLine + "CAUTION: Type is not serializable!";
     397        toolTipText = "Caution: Type is not serializable!" + Environment.NewLine + toolTipText;
    399398      return toolTipText;
    400399    }
Note: See TracChangeset for help on using the changeset viewer.