diff options
author | Siva Velusamy <vsiva@google.com> | 2011-08-17 13:18:58 -0700 |
---|---|---|
committer | Android Code Review <code-review@android.com> | 2011-08-17 13:18:58 -0700 |
commit | 168e27a3d37e983726a82e66950f03926e7ea52f (patch) | |
tree | ade0182df4eb98f5bf624fff82d7aa85d0e29876 | |
parent | 1676e1f36e4c3868cca2494e46686c45f0ee91a3 (diff) | |
parent | 4000b0448ad1edd0aee7882a974bf02c829669ca (diff) | |
download | sdk-168e27a3d37e983726a82e66950f03926e7ea52f.zip sdk-168e27a3d37e983726a82e66950f03926e7ea52f.tar.gz sdk-168e27a3d37e983726a82e66950f03926e7ea52f.tar.bz2 |
Merge "Make new logcat view to be the default in DDMS."
-rw-r--r-- | ddms/app/src/com/android/ddms/UIThread.java | 6 |
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 5506428..ecc3b3f 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 */ |