summaryrefslogtreecommitdiffstats
path: root/src/com/android
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android')
-rw-r--r--src/com/android/camera/VideoCamera.java2
-rw-r--r--src/com/android/camera/ui/IndicatorControl.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/camera/VideoCamera.java b/src/com/android/camera/VideoCamera.java
index dadc29a..75f91ae 100644
--- a/src/com/android/camera/VideoCamera.java
+++ b/src/com/android/camera/VideoCamera.java
@@ -1375,7 +1375,7 @@ public class VideoCamera extends ActivityBase
private void showRecordingUI(boolean recording) {
if (recording) {
- mShutterButton.setBackgroundResource(R.drawable.btn_shutter_video);
+ mShutterButton.setBackgroundResource(R.drawable.btn_shutter_video_recording);
mRecordingTimeView.setText("");
mRecordingTimeView.setVisibility(View.VISIBLE);
if (mReviewControl != null) mReviewControl.setVisibility(View.GONE);
diff --git a/src/com/android/camera/ui/IndicatorControl.java b/src/com/android/camera/ui/IndicatorControl.java
index b31c751..2dd8777 100644
--- a/src/com/android/camera/ui/IndicatorControl.java
+++ b/src/com/android/camera/ui/IndicatorControl.java
@@ -92,7 +92,7 @@ public abstract class IndicatorControl extends RelativeLayout implements
// Add other settings indicator.
if (otherSettingKeys != null) {
addOtherSettingIndicator(mContext,
- R.drawable.ic_settings_holo_light, otherSettingKeys);
+ R.drawable.ic_menu_overflow, otherSettingKeys);
}
}