Skip to content

Commit

Permalink
Merge pull request #6 from esunder/master
Browse files Browse the repository at this point in the history
adding Clear passthrough function to window
  • Loading branch information
tariqporter authored Oct 2, 2017
2 parents d82b457 + 2998139 commit 2d80bac
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion dist/Gdip2.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,12 @@ class Gdip
return this.size.height
}
}


Clear()
{
this.obj.Clear()
}

Update(paramObj=0)
{
if (paramObj.x != "")
Expand Down
7 changes: 6 additions & 1 deletion lib/Window.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,12 @@ class Window extends Gdip.Drawing
return this.size.height
}
}


Clear()
{
this.obj.Clear()
}

Update(paramObj=0)
{
if (paramObj.x != "")
Expand Down

0 comments on commit 2d80bac

Please sign in to comment.