summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xsrc/com/android/camera/SettingsActivity.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/camera/SettingsActivity.java b/src/com/android/camera/SettingsActivity.java
index 52cd04ac3..79c9bfcc0 100755
--- a/src/com/android/camera/SettingsActivity.java
+++ b/src/com/android/camera/SettingsActivity.java
@@ -193,7 +193,7 @@ public class SettingsActivity extends PreferenceActivity {
alert.show();
} else if (manualExposureMode.equals(expTimePriority)) {
alert.setMessage("Enter exposure time in the range of " + exposureRange[0]
- + "ms to " + exposureRange[1] + "ms");
+ + "ns to " + exposureRange[1] + "ns");
linear.addView(ExpTimeInput);
linear.addView(ExpTimeText);
alert.setView(linear);
@@ -225,7 +225,7 @@ public class SettingsActivity extends PreferenceActivity {
final TextView ExpTimeRangeText = new TextView(this);
ISORangeText.setText("Enter ISO in the range of " + isoRange[0] + " to " + isoRange[1]);
ExpTimeRangeText.setText("Enter exposure time in the range of " + exposureRange[0]
- + "ms to " + exposureRange[1] + "ms");
+ + "ns to " + exposureRange[1] + "ns");
linear.addView(ISORangeText);
linear.addView(ISOinput);
linear.addView(ISOtext);