Opened 14 years ago
Closed 14 years ago
#1273 closed defect (done)
The OperatorGraphVisualization throws an exception if shapes are copied &pasted
Reported by: | mkommend | Owned by: | mkommend |
---|---|---|---|
Priority: | highest | Milestone: | HeuristicLab 3.3.2 |
Component: | Operators.Views.OperatorGraphVisualization | Version: | 3.3.2 |
Keywords: | Cc: |
Description
Netron uses a deep cloning mechanism by serializing and deserializing entities. As our customized shapes are not serializable an exception is thrown.
Change History (6)
comment:1 Changed 14 years ago by mkommend
- Status changed from new to accepted
comment:2 Changed 14 years ago by mkommend
- Owner changed from mkommend to abeham
- Status changed from accepted to reviewing
comment:3 Changed 14 years ago by abeham
- Owner changed from abeham to mkommend
- Status changed from reviewing to assigned
In the if statement you probably mean if (controller != null) using the lower cased local variable. Otherwise seems okay, assuming Controller is always != null and Tools is always != null.
comment:4 Changed 14 years ago by mkommend
- Status changed from assigned to accepted
comment:5 Changed 14 years ago by mkommend
- Status changed from accepted to readytorelease
Corrected minor bug in if-statement as abeham suggested with r4814.
comment:6 Changed 14 years ago by swagner
- Resolution set to done
- Status changed from readytorelease to closed
- Version changed from 3.3.1 to 3.3.2
Note: See
TracTickets for help on using
tickets.
As a quick fix I removed the copy and paste support in the GraphVisualizationInfoView because it has never worked. If we want this functionality it must be implemented within our own controls. (r4809)