summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/filtershow/PanelController.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/gallery3d/filtershow/PanelController.java')
-rw-r--r--src/com/android/gallery3d/filtershow/PanelController.java4
1 files 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));
}
}