mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
set max len for roomname field (with comment that it should be kept in
sync with the C constant)
This commit is contained in:
parent
c7febf0d10
commit
e2ee0755cb
1 changed files with 3 additions and 0 deletions
|
@ -95,6 +95,8 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
>
|
||||
|
||||
<!-- maxLength derives from MAX_INVITE_LEN in xwrelay.h -->
|
||||
<EditText android:id="@+id/room_edit"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="fill_parent"
|
||||
|
@ -103,6 +105,7 @@
|
|||
android:capitalize="none"
|
||||
android:singleLine="true"
|
||||
android:selectAllOnFocus="true"
|
||||
android:maxLength="31"
|
||||
android:hint="@string/new_room_hint"
|
||||
/>
|
||||
<CheckBox android:id="@+id/advertise_new_room_check"
|
||||
|
|
Loading…
Reference in a new issue