mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-23 09:52:16 -05:00
. Replaced 'Delete' button in message view with 'Forward' one (too many accidental deletes)
This commit is contained in:
parent
5d576f899f
commit
7f81a1ed5d
@ -61,8 +61,8 @@
|
|||||||
android:layout_width="0dip"
|
android:layout_width="0dip"
|
||||||
android:layout_weight="1" />
|
android:layout_weight="1" />
|
||||||
<Button
|
<Button
|
||||||
android:id="@+id/delete"
|
android:id="@+id/forward"
|
||||||
android:text="@string/delete_action"
|
android:text="@string/forward_action"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_width="0dip"
|
android:layout_width="0dip"
|
||||||
android:layout_weight="1" />
|
android:layout_weight="1" />
|
||||||
|
@ -303,7 +303,7 @@ public class MessageView extends Activity
|
|||||||
|
|
||||||
findViewById(R.id.reply).setOnClickListener(this);
|
findViewById(R.id.reply).setOnClickListener(this);
|
||||||
findViewById(R.id.reply_all).setOnClickListener(this);
|
findViewById(R.id.reply_all).setOnClickListener(this);
|
||||||
findViewById(R.id.delete).setOnClickListener(this);
|
findViewById(R.id.forward).setOnClickListener(this);
|
||||||
findViewById(R.id.show_pictures).setOnClickListener(this);
|
findViewById(R.id.show_pictures).setOnClickListener(this);
|
||||||
|
|
||||||
// UrlInterceptRegistry.registerHandler(this);
|
// UrlInterceptRegistry.registerHandler(this);
|
||||||
@ -521,8 +521,8 @@ public class MessageView extends Activity
|
|||||||
case R.id.reply_all:
|
case R.id.reply_all:
|
||||||
onReplyAll();
|
onReplyAll();
|
||||||
break;
|
break;
|
||||||
case R.id.delete:
|
case R.id.forward:
|
||||||
onDelete();
|
onForward();
|
||||||
break;
|
break;
|
||||||
case R.id.next:
|
case R.id.next:
|
||||||
onNext();
|
onNext();
|
||||||
|
Loading…
Reference in New Issue
Block a user