X-Git-Url: https://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2FTComboBox.java;h=fe1366d3aad49693802efa0a3af0fee114abd3fc;hb=8f62f06e3ab03e24e23a1b7f369ae31d701e736b;hp=4abdd6fbc7445b89378dffd3ec7e40923d88bec6;hpb=d8dc8aea32a07a0653933700f1abadc7776b013f;p=fanfix.git diff --git a/src/jexer/TComboBox.java b/src/jexer/TComboBox.java index 4abdd6f..fe1366d 100644 --- a/src/jexer/TComboBox.java +++ b/src/jexer/TComboBox.java @@ -216,13 +216,15 @@ public class TComboBox extends TWidget { // ------------------------------------------------------------------------ /** - * Override TWidget's width: we can only set width at construction time. + * Override TWidget's width: we need to set child widget widths. * - * @param width new widget width (ignored) + * @param width new widget width */ @Override public void setWidth(final int width) { - // Do nothing + field.setWidth(width - 3); + list.setWidth(width); + super.setWidth(width); } /**