Skip to content

Commit

Permalink
Publicize tabs information.
Browse files Browse the repository at this point in the history
  • Loading branch information
dolda2000 committed Jan 28, 2015
1 parent f7fe479 commit dbbe346
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/haven/Tabs.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
import java.util.*;

public class Tabs {
private Coord c, sz;
private Widget parent;
public Coord c, sz;
public Widget parent;
public Tab curtab = null;
public Collection<Tab> tabs = new LinkedList<Tab>();

Expand Down Expand Up @@ -83,6 +83,7 @@ public void showtab(Tab tab) {
public void resize(Coord sz) {
for(Tab tab : tabs)
tab.resize(sz);
this.sz = sz;
}

public Coord contentsz() {
Expand Down

0 comments on commit dbbe346

Please sign in to comment.