B2012-370 Fixed null reference error when deleting a Word section
C2012-040 Removed the word “Step” from the description of [Shift][Ctrl][I] and [Shift][Ctrl][B] Removed the descriptions for super and subscript we do not support these shortcut keys
This commit is contained in:
@@ -1323,7 +1323,7 @@ namespace VEPROMS
|
||||
private void tc_WordSectionDeleted(object sender, WordSectionEventArgs args)
|
||||
{
|
||||
// is it a library document - if so and libdoc panel is visible, update lists on panel.
|
||||
if ((!args.MySectionInfo.IsStepSection) && ((args.MySectionInfo.MyContent.MyEntry.MyDocument.LibTitle ?? "") != "") && (toolsPanel.Expanded))
|
||||
if ((!args.MySectionInfo.IsStepSection) && (args.MySectionInfo.MyContent.MyEntry != null && (args.MySectionInfo.MyContent.MyEntry.MyDocument.LibTitle ?? "") != "") && (toolsPanel.Expanded))
|
||||
{
|
||||
if (toolsTabs.SelectedTab == tabItemLibDocs)
|
||||
{
|
||||
|
Reference in New Issue
Block a user