Skip to content

Commit

Permalink
Merge branch 'release/v0.3.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
redsolo committed Dec 15, 2017
2 parents 6a16254 + 743a51d commit bdbf1ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ solution: src/VcEngineAutomation.sln

env:
global:
- PKG_VERSION=0.3.6
- PKG_VERSION=0.3.7

script:
- ./build.sh
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public static Point GetCenter(this AutomationElement element)
}
public static bool IsVisible(this AutomationElement element)
{
return !element.IsOffscreen;
return !element.Properties.IsOffscreen.ValueOrDefault;
}
public static string ToDebugString(this AutomationElement item)
{
Expand Down

0 comments on commit bdbf1ec

Please sign in to comment.