개정판 ab7fe8c0
Fix: Sign, Image Control에서 AxisLock이 설정되어 있으면 혹은 Shift Key를 누르면 크기를 정비율로 수정되도록 수정
Change-Id: I2f4b32afd4792e40bc896de780751c4680c9deee
KCOM/Views/MainMenu.xaml.cs | ||
---|---|---|
6144 | 6144 |
|
6145 | 6145 |
multi_Undo_Data.Markup = control; |
6146 | 6146 |
|
6147 |
if ((control as IShapeControl) != null)
|
|
6147 |
if (control is IShapeControl)
|
|
6148 | 6148 |
{ |
6149 | 6149 |
multi_Undo_Data.paint = (control as IShapeControl).Paint; |
6150 | 6150 |
} |
6151 |
if ((control as IDashControl) != null)
|
|
6151 |
if (control is IDashControl)
|
|
6152 | 6152 |
{ |
6153 | 6153 |
multi_Undo_Data.DashSize = (control as IDashControl).DashSize; |
6154 | 6154 |
} |
6155 |
if ((control as IPath) != null)
|
|
6155 |
if (control is IPath)
|
|
6156 | 6156 |
{ |
6157 | 6157 |
multi_Undo_Data.LineSize = (control as IPath).LineSize; |
6158 | 6158 |
} |
내보내기 Unified diff