mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-04 23:02:02 +01:00
hack: limit chat field length to 255
The common code truncates to 255 *bytes*, not chars, so this isn't even
right, but at least for ascii users it'll make it less likely that
what's typed doesn't all get sent. The right fix is to change the format
to not limit sent str len to 255 bytes. See commit 512a8e1af
.
This commit is contained in:
parent
ac6373afa7
commit
6602e3daae
1 changed files with 1 additions and 0 deletions
|
@ -34,6 +34,7 @@
|
|||
android:layout_weight="1"
|
||||
android:scrollHorizontally="false"
|
||||
android:hint="@string/chat_hint"
|
||||
android:maxLength="255"
|
||||
/>
|
||||
<Button android:id="@+id/chat_send"
|
||||
android:layout_width="wrap_content"
|
||||
|
|
Loading…
Reference in a new issue