Merge pull request #25 from leocereus/PlacementSelectionFix

Removed code that toggles selection when controls are placed
This commit is contained in:
Jochen Kühner 2017-05-30 17:35:00 +02:00 коммит произвёл GitHub
Родитель bd1cfdb942 e1907e2a64
Коммит 5dac874710
1 изменённых файлов: 0 добавлений и 6 удалений

Просмотреть файл

@ -58,12 +58,6 @@ namespace ICSharpCode.WpfDesign.Designer.Extensions
public virtual void EndPlacement(PlacementOperation operation)
{
InfoTextEnterArea.Stop(ref infoTextEnterArea);
if (operation.Type != PlacementType.Delete)
{
this.ExtendedItem.Services.Selection.SetSelectedComponents(null);
this.ExtendedItem.Services.Selection.SetSelectedComponents(operation.PlacedItems.Select(x => x.Item).ToList());
}
}
public virtual Rect GetPosition(PlacementOperation operation, DesignItem item)