Spark 1772 muc icons (#198)

* SPARK-1735: MUC occupants list should have width

This commit attempts to prevent that the occupants list in a MUC
screen has a near-zero width.

* SPARK-1772: Icons for muc role fix

* SPARK-1735: MUC occupants list should have vertical scrollbar
This commit is contained in:
Guus der Kinderen
2016-08-20 18:45:39 +02:00
committed by wroot
parent 5befe65c28
commit 5fad653e7e

View File

@ -160,6 +160,7 @@ public class GroupChatParticipantList extends JPanel {
});
JScrollPane scroller = new JScrollPane(participantsList);
scroller.setPreferredSize( new Dimension( 200, getHeight() ) );
// Speed up scrolling. It was way too slow.
scroller.getVerticalScrollBar().setBlockIncrement(200);