summaryrefslogtreecommitdiffstats
path: root/ddms
diff options
context:
space:
mode:
authorSiva Velusamy <vsiva@google.com>2011-08-17 13:18:58 -0700
committerAndroid Code Review <code-review@android.com>2011-08-17 13:18:58 -0700
commit168e27a3d37e983726a82e66950f03926e7ea52f (patch)
treeade0182df4eb98f5bf624fff82d7aa85d0e29876 /ddms
parent1676e1f36e4c3868cca2494e46686c45f0ee91a3 (diff)
parent4000b0448ad1edd0aee7882a974bf02c829669ca (diff)
downloaddevice_generic_opengl-transport-168e27a3d37e983726a82e66950f03926e7ea52f.tar.gz
device_generic_opengl-transport-168e27a3d37e983726a82e66950f03926e7ea52f.tar.bz2
device_generic_opengl-transport-168e27a3d37e983726a82e66950f03926e7ea52f.zip
Merge "Make new logcat view to be the default in DDMS."
Diffstat (limited to 'ddms')
-rw-r--r--ddms/app/src/com/android/ddms/UIThread.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/ddms/app/src/com/android/ddms/UIThread.java b/ddms/app/src/com/android/ddms/UIThread.java
index 55064285e..ecc3b3f6c 100644
--- a/ddms/app/src/com/android/ddms/UIThread.java
+++ b/ddms/app/src/com/android/ddms/UIThread.java
@@ -228,10 +228,10 @@ public class UIThread implements IUiSelectionListener, IClientChangeListener {
* Flag to indicate whether to use the old or the new logcat view. This is a
* temporary workaround that will be removed once the new view is complete.
*/
- private static final String USE_NEW_LOGCAT_VIEW =
- System.getenv("ANDROID_USE_NEW_LOGCAT_VIEW");
+ private static final String USE_OLD_LOGCAT_VIEW =
+ System.getenv("ANDROID_USE_OLD_LOGCAT_VIEW");
public static boolean useOldLogCatView() {
- return USE_NEW_LOGCAT_VIEW == null;
+ return USE_OLD_LOGCAT_VIEW != null;
}
private LogPanel mLogPanel; /* only valid when useOldLogCatView() == true */