개정판 5a223b60
Fix: Approval로 등록된 심볼을 배치하지 못하는 오류 수정
- 심볼 배치 후 작업 영역을 클릭하면 MARKUS가 종료되는 오류 수정
Change-Id: I4e5be7f497aae8ba3f385c8efad688a7f82ae492
KCOM/Common/SelectionSet.cs | ||
---|---|---|
141 | 141 |
{ |
142 | 142 |
if ((InnerItem.DrawingData as PolygonControl).CommentID == null) |
143 | 143 |
{ |
144 |
(InnerItem.DrawingData as PolygonControl).CommentID = Commons.shortGuid();
|
|
144 |
(InnerItem.DrawingData as PolygonControl).CommentID = Commons.ShortGuid();
|
|
145 | 145 |
} |
146 | 146 |
} |
147 | 147 |
|
... | ... | |
149 | 149 |
#region ZIndex 설정 |
150 | 150 |
System.Windows.Controls.Canvas.SetZIndex(control, control.ZIndex); |
151 | 151 |
#endregion |
152 |
ViewerDataModel.Instance.MarkupControls_USER.Insert(control.Index, control); |
|
152 |
if (control.Index >= 0) |
|
153 |
{ |
|
154 |
ViewerDataModel.Instance.MarkupControls_USER.Insert(control.Index, control); |
|
155 |
} |
|
156 |
else |
|
157 |
{ |
|
158 |
ViewerDataModel.Instance.MarkupControls_USER.Add(control); |
|
159 |
} |
|
153 | 160 |
} |
154 | 161 |
} |
155 | 162 |
} |
내보내기 Unified diff