Remove Unnecessary debug message

Fixed logic to find external transition when attempting to delete a procedure
Turn-on Table Shrinking Generically
This commit is contained in:
Rich
2015-05-29 00:09:39 +00:00
parent 5b07290ccd
commit 1463ec8853
6 changed files with 11 additions and 10 deletions

View File

@@ -2266,7 +2266,7 @@ namespace Volian.Controls.Library
{
if (ex.Message.Contains("has External Transitions and has no next step"))
{
using (TransitionInfoList exTrans = TransitionInfoList.GetExternalTransitions(ii.ItemID))
using (TransitionInfoList exTrans = TransitionInfoList.GetExternalTransitionsToChildren(ii.ItemID))
{
DialogResult ans = MessageBox.Show("Transitions exist to this step and cannot be adjusted automatically." +
"\r\n\r\nDo you want to be placed on the " + (exTrans.Count > 1 ? "first " : "") + "substep with the problem Transition?" +