Skip to content

Commit

Permalink
fix entry list constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
moehreag committed Dec 9, 2023
1 parent db1be31 commit 204a98c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

final class ChannelList extends EntryListWidget<ChannelList.Entry> {
ChannelList(MinecraftClient client, int width, int height, int top, int bottom, int itemHeight) {
super(client, top, width, bottom-top, itemHeight);
super(client, width, bottom-top, top, itemHeight);
}

@Override
Expand Down

0 comments on commit 204a98c

Please sign in to comment.