position caret at end of restored chat pending text

This commit is contained in:
Eric House 2016-07-06 21:39:55 -07:00
parent a86ff8b7b0
commit 91a58ab041

View file

@ -141,6 +141,7 @@ public class ChatDelegate extends DelegateBase {
String curMsg = DBUtils.getCurChat( m_activity, m_rowid, m_curPlayer );
if ( null != curMsg && 0 < curMsg.length() ) {
m_edit.setText( curMsg );
m_edit.setSelection( curMsg.length() );
}
}
}