X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2FTRadioGroup.java;h=723148fd1f781e080901cf013fc41e510a2b5283;hb=ea91242c4516c212e07f06c1a7d44ab912018e36;hp=c1b652352d1b4b36049be132fed9fa229d96382e;hpb=00d2622b0fff2411dc81ee2a0cc43a5f3f52564c;p=nikiroo-utils.git diff --git a/src/jexer/TRadioGroup.java b/src/jexer/TRadioGroup.java index c1b6523..723148f 100644 --- a/src/jexer/TRadioGroup.java +++ b/src/jexer/TRadioGroup.java @@ -65,7 +65,7 @@ public final class TRadioGroup extends TWidget { * @param button new button that became selected */ void setSelected(final TRadioButton button) { - assert (button.getSelected()); + assert (button.isSelected()); if (selectedButton != null) { selectedButton.setSelected(false); } @@ -84,13 +84,9 @@ public final class TRadioGroup extends TWidget { final String label) { // Set parent and window - super(parent); + super(parent, x, y, label.length() + 4, 2); - setX(x); - setY(y); - setHeight(2); this.label = label; - setWidth(label.length() + 4); } /** @@ -100,7 +96,7 @@ public final class TRadioGroup extends TWidget { public void draw() { CellAttributes radioGroupColor; - if (getAbsoluteActive()) { + if (isAbsoluteActive()) { radioGroupColor = getTheme().getColor("tradiogroup.active"); } else { radioGroupColor = getTheme().getColor("tradiogroup.inactive");