mirror of
https://github.com/igniterealtime/Spark.git
synced 2025-12-01 12:27:58 +00:00
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:
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user