diff options
author | Owen Lin <owenlin@google.com> | 2010-03-05 23:51:42 +0800 |
---|---|---|
committer | Owen Lin <owenlin@google.com> | 2010-03-07 14:30:49 +0800 |
commit | d5be45065c4939d5a12b2294cb83230c1aaa8246 (patch) | |
tree | e7cd7e626ce4917065e96e7a0868753973add681 /src/com/android/camera/ui/ZoomIndicator.java | |
parent | 281be5337852cb4b5d24e0a0440c426cb96bbebd (diff) | |
download | LegacyCamera-d5be45065c4939d5a12b2294cb83230c1aaa8246.zip LegacyCamera-d5be45065c4939d5a12b2294cb83230c1aaa8246.tar.gz LegacyCamera-d5be45065c4939d5a12b2294cb83230c1aaa8246.tar.bz2 |
Address the review comments.
Change-Id: Ia30be9e0081830bb05b6d7655c628d022ccd55d7
Diffstat (limited to 'src/com/android/camera/ui/ZoomIndicator.java')
-rw-r--r-- | src/com/android/camera/ui/ZoomIndicator.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/camera/ui/ZoomIndicator.java b/src/com/android/camera/ui/ZoomIndicator.java index 36c06a3..c15643f 100644 --- a/src/com/android/camera/ui/ZoomIndicator.java +++ b/src/com/android/camera/ui/ZoomIndicator.java @@ -20,7 +20,7 @@ public class ZoomIndicator extends GLView { @Override protected void onMeasure(int widthSpec, int heightSpec) { new MeasureHelper(this) - .setPreferedContentSize(mTitle.getWidth(), mTitle.getHeight()) + .setPreferredContentSize(mTitle.getWidth(), mTitle.getHeight()) .measure(widthSpec, heightSpec); } |