Added how SubSection_Edit property value is determined
Added code to delete ro usages and transitions that are converted to text. Added code to handle "dashes" and "unicode dashes" Added code to support converting to text transitions to external destinations with internal style transition Added wait cursor for log running processes so application shows it is busy and added code to to fix searches that should return results but are not returning results when doiing transitions searches. Added code to make Refresh Referenced Objects and Refresh Transitions button under Review tab of StepTabRibbon not visible
This commit is contained in:
@@ -771,7 +771,7 @@ namespace VEPROMS.CSLA.Library
|
||||
{
|
||||
// if null - return a "Y"
|
||||
string tmp = _Xp["SubSection", "Edit"];
|
||||
return tmp == null || tmp == "" ? "N" : tmp;
|
||||
return tmp == null || tmp == "" ? DefaultSubSectionEdit : tmp;
|
||||
}
|
||||
set
|
||||
{
|
||||
@@ -779,7 +779,17 @@ namespace VEPROMS.CSLA.Library
|
||||
OnPropertyChanged("SubSection_Edit");
|
||||
}
|
||||
}
|
||||
|
||||
public string DefaultSubSectionEdit
|
||||
{
|
||||
get
|
||||
{
|
||||
if (_SectionInfo != null && _SectionInfo.Sections.Count > 0 && _SectionInfo.Steps.Count > 0)
|
||||
return "N";
|
||||
//if (_Section != null && _Section.MyContent.cont .Sections.Count > 0 && _Section.Steps.Count > 0)
|
||||
// return "N";
|
||||
return "Y";
|
||||
}
|
||||
}
|
||||
[Category("SubSection")]
|
||||
//PROPGRID: Hide Subsection AutoIndent
|
||||
[Browsable(false)]
|
||||
|
Reference in New Issue
Block a user