Menu

#5 NickList too narrow

open
nobody
None
2
2002-12-06
2001-10-01
No

The NickList ist too narrow, so many Nicks cannot be
displayed fully. SplitPane would be nice, but without
Swing...

Discussion

  • Axel Staacke

    Axel Staacke - 2001-10-01
    • priority: 5 --> 2
    • assigned_to: nobody --> jkohen
     
  • Christian Buck

    Christian Buck - 2001-10-06

    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

     
  • Javier Kohen

    Javier Kohen - 2002-12-06
    • assigned_to: jkohen --> nobody
     

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.