From bba955a6b6a6134c192c8379a4ce7913b12a8670 Mon Sep 17 00:00:00 2001 From: Bart Sears Date: Thu, 11 Oct 2012 20:34:21 -0700 Subject: Adjust text on Apply button ALL CAPS was a bit loud, so go back to mixed case, lower font size to 18dip, and remove ":". Bug: 7333492 Change-Id: I18885808437e6328ec94c40df25ea0678d381825 --- src/com/android/gallery3d/filtershow/PanelController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/android/gallery3d/filtershow/PanelController.java b/src/com/android/gallery3d/filtershow/PanelController.java index fe2be563f..f13cdd497 100644 --- a/src/com/android/gallery3d/filtershow/PanelController.java +++ b/src/com/android/gallery3d/filtershow/PanelController.java @@ -142,10 +142,10 @@ public class PanelController implements OnClickListener { public void updateText() { String apply = mContext.getString(R.string.apply_effect); if (mShowParameterValue) { - mTextView.setText(Html.fromHtml(apply + ": " + mEffectName + " " + mTextView.setText(Html.fromHtml(apply + " " + mEffectName + " " + mParameterValue)); } else { - mTextView.setText(Html.fromHtml(apply + ": " + mEffectName)); + mTextView.setText(Html.fromHtml(apply + " " + mEffectName)); } } -- cgit v1.2.3