Skip to content

Commit

Permalink
Merge pull request #4419 from mP1/feature/ValueComponentDelegator-hid…
Browse files Browse the repository at this point in the history
…eMarginBottom-N-removeBorders

ValueComponentDelegator.hideMarginBottom &
  • Loading branch information
mP1 authored Jan 15, 2025
2 parents d0e3a1c + 51dffde commit ff45fbc
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,15 @@ default C addKeyupListener(final EventListener listener) {

@Override
default C hideMarginBottom() {
this.hideMarginBottom();
this.valueComponent()
.hideMarginBottom();
return (C) this;
}

@Override
default C removeBorders() {
this.removeBorders();
this.valueComponent()
.removeBorders();
return (C) this;
}

Expand Down

0 comments on commit ff45fbc

Please sign in to comment.