Skip to content

Commit

Permalink
fix display, remarks
Browse files Browse the repository at this point in the history
  • Loading branch information
rcktrncn committed Jul 24, 2021
1 parent d291a65 commit 55cb5ad
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class CheckWindowNameExistsCommand : ScriptCommand
[Attributes.PropertyAttributes.PropertyDescription("Specify the variable to assign the result")]
[Attributes.PropertyAttributes.InputSpecification("")]
[Attributes.PropertyAttributes.SampleUsage("**vSomeVariable**")]
[Attributes.PropertyAttributes.Remarks("If you have enabled the setting **Create Missing Variables at Runtime** then you are not required to pre-define your variables, however, it is highly recommended.")]
[Attributes.PropertyAttributes.Remarks("Result is **TRUE** or **FALSE**")]
public string v_UserVariableName { get; set; }

[XmlIgnore]
Expand Down Expand Up @@ -136,7 +136,7 @@ public override void Refresh(frmCommandEditor editor)

public override string GetDisplayValue()
{
return base.GetDisplayValue() + " [Target Window: " + v_WindowName + "]";
return base.GetDisplayValue() + " [Check: " + v_WindowName + "', Result In: '" + v_UserVariableName + "']";
}

public override bool IsValidate(frmCommandEditor editor)
Expand Down

0 comments on commit 55cb5ad

Please sign in to comment.