aboutsummaryrefslogtreecommitdiffstats
path: root/ddms
diff options
context:
space:
mode:
authorSiva Velusamy <vsiva@google.com>2011-11-28 12:01:10 -0800
committerSiva Velusamy <vsiva@google.com>2011-11-28 12:01:10 -0800
commitcbd2d48dd776d9cbabd7f87e3fef08c4c56a152d (patch)
tree19ee10c5115b874ab1a6e392da70daa66e63afcd /ddms
parent3d5023281eb5d275fc66ab72b8f214bdb42280cd (diff)
downloadsdk-cbd2d48dd776d9cbabd7f87e3fef08c4c56a152d.zip
sdk-cbd2d48dd776d9cbabd7f87e3fef08c4c56a152d.tar.gz
sdk-cbd2d48dd776d9cbabd7f87e3fef08c4c56a152d.tar.bz2
logcat: bring up edit filter dialog on double click
When a saved filter is double clicked, bring up the 'Edit Filter' dialog for the selected filter. Change-Id: Idd6766ba95e0d2f228c664ffccf8dbfb5b93b0b8
Diffstat (limited to 'ddms')
-rw-r--r--ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/LogCatPanel.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/LogCatPanel.java b/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/LogCatPanel.java
index a342350..9084623 100644
--- a/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/LogCatPanel.java
+++ b/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/LogCatPanel.java
@@ -476,6 +476,11 @@ public final class LogCatPanel extends SelectionDependentPanel
public void widgetSelected(SelectionEvent event) {
filterSelectionChanged();
}
+
+ @Override
+ public void widgetDefaultSelected(SelectionEvent arg0) {
+ editSelectedFilter();
+ }
});
}