The NickList ist too narrow, so many Nicks cannot be displayed fully. SplitPane would be nice, but without Swing...
Logged In: YES user_id=84301
As a hotfix you can use this:
in ChannelWindow.java find the lines, where the right panel is added... :
gbc.fill = GridBagConstraints.BOTH; gb.setConstraints(right_panel, gbc); add(right_panel);
...and add a line like:
gbc.weightx = 0.3; gbc.fill = GridBagConstraints.BOTH; gb.setConstraints(right_panel, gbc); add(right_panel);
This makes the NickList wider.
cbuck@lantis.de
Log in to post a comment.
Logged In: YES
user_id=84301
As a hotfix you can use this:
in ChannelWindow.java find the lines, where the right panel
is added... :
gbc.fill = GridBagConstraints.BOTH;
gb.setConstraints(right_panel, gbc);
add(right_panel);
...and add a line like:
gbc.weightx = 0.3;
gbc.fill = GridBagConstraints.BOTH;
gb.setConstraints(right_panel, gbc);
add(right_panel);
This makes the NickList wider.
cbuck@lantis.de