feat: super crude and not-live userlist

This commit is contained in:
əlemi 2024-10-02 02:35:50 +02:00
parent ecdba4ae01
commit 9c305fbcf4
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -108,6 +108,9 @@ public class CodeMPToolPanel extends JPanel {
});
this.add(tree, BorderLayout.CENTER);
JList userlist = new JList<String>(ws.userList());
this.add(userlist, BorderLayout.SOUTH);
}
}
}