X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2FTVScroller.java;h=d9d5ec852bb1495c7ce4fed35a9498f7d4ab1775;hb=06fc796900585f16a4962fb76c13e25a7cf937eb;hp=459ef4fbe25986af4984cca3284eef368ad47ea9;hpb=cc99cba8bdfb594d4606949f1763898a420e7f34;p=fanfix.git diff --git a/src/jexer/TVScroller.java b/src/jexer/TVScroller.java index 459ef4f..d9d5ec8 100644 --- a/src/jexer/TVScroller.java +++ b/src/jexer/TVScroller.java @@ -152,7 +152,7 @@ public final class TVScroller extends TWidget { * @param parent parent widget * @param x column relative to parent * @param y row relative to parent - * @param width height of scroll bar + * @param height height of scroll bar */ public TVScroller(final TWidget parent, final int x, final int y, final int height) { @@ -169,7 +169,7 @@ public final class TVScroller extends TWidget { /** * Compute the position of the scroll box (a.k.a. grip, thumb). * - * @param Y position of the box, between 1 and height - 2 + * @return Y position of the box, between 1 and height - 2 */ private int boxPosition() { return (getHeight() - 3) * (value - topValue) / (bottomValue - topValue) + 1;