From 37f076549eb06b4af2ac52a7e28109f8b1e8fd0e Mon Sep 17 00:00:00 2001 From: Wes Johnston Date: Thu, 10 Jan 2013 12:26:58 -0800 Subject: [PATCH] Bug 829198 - Use smaller font-size for context menu items. r=mfinkle --- mobile/android/base/PromptService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/android/base/PromptService.java b/mobile/android/base/PromptService.java index 2fa43ff60623..cf9df9a2be49 100644 --- a/mobile/android/base/PromptService.java +++ b/mobile/android/base/PromptService.java @@ -309,7 +309,7 @@ public class PromptService implements OnClickListener, OnCancelListener, OnItemC int length = mInputs == null ? 0 : mInputs.length; if (aMenuList != null && aMenuList.length > 0) { - int resourceId = android.R.layout.select_dialog_item; + int resourceId = android.R.layout.simple_list_item_1; if (mSelected != null && mSelected.length > 0) { if (aMultipleSelection) { resourceId = R.layout.select_dialog_multichoice;