Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/20/10 15:40:58 (15 years ago)
Author:
mkommend
Message:

corrected selection rectangle in RunCollectionBubbleChartView and removed filtering of datatypes in IStringConvertibleMatrix implementation of RunCollection (ticket #970)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionBubbleChartView.cs

    r3432 r3441  
    8181      set { base.Content = value; }
    8282    }
    83     public override bool ReadOnly {
    84       get { return base.ReadOnly; }
    85       set { /*not needed because results are always readonly */}
    86     }
    8783
    8884    protected override void RegisterContentEvents() {
     
    291287        HitTestResult h = this.chart.HitTest(e.X, e.Y);
    292288        if (this.draggedRun != null && h.ChartElementType != ChartElementType.DataPoint) {
    293           //this.isDragOperationInProgress = true;
     289          this.isDragOperationInProgress = true;
    294290          DataObject data = new DataObject();
    295291          data.SetData("Type", draggedRun.GetType());
Note: See TracChangeset for help on using the changeset viewer.