allow empty notes

This commit is contained in:
LarsBrubaker 2020-07-12 12:29:16 -07:00
parent 00e283936c
commit abdd865d85
2 changed files with 7 additions and 2 deletions

View file

@ -277,7 +277,10 @@ namespace MatterHackers.MatterControl.PrintHistory
printTask.Commit();
popupMenu.Unfocus();
printInfoWidget.Text = GetPrintInfo();
}));
})
{
AllowEmpty = true,
});
};
}