Skip to content

Commit

Permalink
...which are now actually public.
Browse files Browse the repository at this point in the history
  • Loading branch information
nikiroo committed Jul 5, 2017
1 parent 3b0f02e commit c96010c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/jexer/TWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ public final void center() {
/**
* Maximize window to the current maximum size.
*/
private void maximize() {
public void maximize() {
if (!maximized) {
restoreWindowWidth = getWidth();
restoreWindowHeight = getHeight();
Expand All @@ -327,7 +327,7 @@ private void maximize() {
/**
* Restore (unmaximize) window.
*/
private void restore() {
public void restore() {
if (maximized) {
setWidth(restoreWindowWidth);
setHeight(restoreWindowHeight);
Expand Down

0 comments on commit c96010c

Please sign in to comment.