Wrote a test for clicking on the queue check box button

This commit is contained in:
Lars Brubaker 2016-12-21 17:02:25 -08:00
parent e7bdbefe7f
commit 9dd64e2ce1
3 changed files with 45 additions and 3 deletions

View file

@ -327,7 +327,7 @@ namespace MatterHackers.MatterControl.PrintQueue
{
// Hard-coded processing rule to avoid changing the SelectedIndex when clicks occur
// with the thumbnail region - aka the first 55 pixels
if (mouseEvent.X < 56) return;
if (!EditMode && mouseEvent.X < 56) return;
GuiWidget widgetClicked = ((GuiWidget)sender);
for (int index = 0; index < topToBottomItemList.Children.Count; index++)