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:
parent
d6cd49cab2
commit
77c7cb6d6b
Binary file not shown.
Binary file not shown.
@ -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
|
||||
// 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();
|
||||
if (!stk.Contains("MouseUp") && !stk.Contains("ButtonDown") && !stk.Contains("Exception"))
|
||||
|
Loading…
x
Reference in New Issue
Block a user