Updating Profile Image.

git-svn-id: http://svn.igniterealtime.org/svn/repos/spark/trunk@5539 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Derek DeMoro
2006-09-28 18:16:49 +00:00
committed by derek
parent 08346f6681
commit f3aea05885
6 changed files with 20 additions and 2 deletions

View File

@ -367,6 +367,22 @@ public abstract class ChatRoom extends BackgroundPanel implements ActionListener
catch (Exception e) {
Log.error(e);
}
/*
try {
JScrollBar vbar = textScroller.getVerticalScrollBar();
int whereWeAt = vbar.getValue() + vbar.getVisibleAmount();
if (whereWeAt < vbar.getMaximum() - 50) {
}
else {
vbar.setValue(vbar.getMaximum());
}
}
catch (Exception e) {
Log.error(e);
}
*/
}