Skip to content

Commit

Permalink
Add support to setVisible method in FormFrame class
Browse files Browse the repository at this point in the history
  • Loading branch information
yamelsenih committed Dec 1, 2015
1 parent e4dc6b3 commit c0eda4a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions client/src/org/compiere/apps/form/FormFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -693,4 +693,12 @@ public void setSize(int width, int height) {
public void addWindowListener(WindowAdapter adapter) {
getWindow().addWindowListener(adapter);
}

/**
* Add support to setVisible Nethod
* @param visible
*/
public void setVisible(boolean visible) {
getWindow().setVisible(visible);
}
} // FormFrame

0 comments on commit c0eda4a

Please sign in to comment.