Skip to content

Commit

Permalink
missing method causing a stack overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tbee committed Jun 14, 2023
1 parent a28423a commit aa9b83a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/org/tbee/sway/SButtonPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,10 @@ public enum Alignment {LEADING, TRAILING};
// ===================================================================================================
// CONVENIENCE

static public SButtonPanel of() {
return new SButtonPanel();
}

static public SButtonPanel of(AbstractButton... buttons) {
return SButtonPanel.of().add(buttons);
}
Expand Down

0 comments on commit aa9b83a

Please sign in to comment.