Do not autocheck selected/active part when entering EditMode - Fixes #81701156

This commit is contained in:
John Lewin 2014-10-29 10:23:10 -07:00
parent 171d781a05
commit 21b46d25d6

View file

@ -358,17 +358,6 @@ namespace MatterHackers.MatterControl.PrintQueue
if (index == SelectedIndex)
{
// When not in editmode, keep updating the SelectedItems list to contain the current object. This insures
// that when toggle to editmode occurs, the active selection appears checked.
this.SelectedItems.Clear();
this.SelectedItems.Add(queueRowItem);
queueRowItem.selectionCheckBox.Checked = true;
queueRowItem.isSelectedItem = true;
if (!PrinterConnectionAndCommunication.Instance.PrinterIsPrinting && !PrinterConnectionAndCommunication.Instance.PrinterIsPaused)
{
queueRowItem.isActivePrint = true;