F2017-060 Adjust the Roman Numeral HLS tab so that it aligns with the other high level step types

F2017-061 hide the Asterisk high level step type
B2017-214 – add a null reference check for when you close PROMS but do not have any procedures open
This commit is contained in:
John Jenko 2017-09-20 19:18:47 +00:00
parent d6cd49cab2
commit 77c7cb6d6b
3 changed files with 2 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View File

@ -1074,7 +1074,8 @@ namespace VEPROMS
{ {
// B2017-212 If the user uses the X button in Word to close the word attachment, PROMS thinks that the user wants to close out of PROMS as well // B2017-212 If the user uses the X button in Word to close the word attachment, PROMS thinks that the user wants to close out of PROMS as well
// trap for this and close only the Word tab in PROMS // trap for this and close only the Word tab in PROMS
if (tc.SelectedDisplayTabItem.MyDSOTabPanel != null) // B2017-214 added a null reference check
if (tc.SelectedDisplayTabItem != null && tc.SelectedDisplayTabItem.MyDSOTabPanel != null)
{ {
string stk = Volian.Base.Library.vlnStackTrace.StackToString(); string stk = Volian.Base.Library.vlnStackTrace.StackToString();
if (!stk.Contains("MouseUp") && !stk.Contains("ButtonDown") && !stk.Contains("Exception")) if (!stk.Contains("MouseUp") && !stk.Contains("ButtonDown") && !stk.Contains("Exception"))