From 21b46d25d6bb7bc8d240e57e2f40786f9be250a7 Mon Sep 17 00:00:00 2001 From: John Lewin Date: Wed, 29 Oct 2014 10:23:10 -0700 Subject: [PATCH] Do not autocheck selected/active part when entering EditMode - Fixes #81701156 --- PrintQueue/QueueDataView.cs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/PrintQueue/QueueDataView.cs b/PrintQueue/QueueDataView.cs index 98455b739..385b2c331 100644 --- a/PrintQueue/QueueDataView.cs +++ b/PrintQueue/QueueDataView.cs @@ -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;