C2018-016 (Volian use only) Added capability to eliminate Unused formats from the list of available formats. If you add the text "(Unused)" to the format description, the specified format will be removed from the available format list if it has not been used (Folder, DocVersion or Contents).
B2018-074 (Volian Use Only at this point) When you would enter an ItemID in the Toolbar Text window for a MSWord section, the code would crash. This has been fixed.
This commit is contained in:
@@ -82,7 +82,10 @@ namespace Volian.Controls.Library
|
||||
if (_MyStepTabPanel == null) return null;
|
||||
return _MyStepTabPanel.SelectedItemInfo;
|
||||
}
|
||||
set { _MyStepTabPanel.SelectedItemInfo = value; }
|
||||
set {// B2018-074 Don't crash if opening MSWord section from Tools window in Debug Mode
|
||||
if (_MyStepTabPanel != null)
|
||||
_MyStepTabPanel.SelectedItemInfo = value;
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// Current DocumentInfo for this page - only set if library document
|
||||
|
Reference in New Issue
Block a user