aboutsummaryrefslogtreecommitdiffstats
path: root/eclipse
diff options
context:
space:
mode:
authorTor Norbye <tnorbye@google.com>2015-02-05 22:36:53 +0000
committerandroid-build-merger <android-build-merger@google.com>2015-02-05 22:36:53 +0000
commite50f48d93f311c7143a051e2244d68c9f19507c5 (patch)
tree6015ffd3940dedacfbaa33ad0a0165358bf35785 /eclipse
parent9042534a2f70c86840c8594c280594f2c4c916bd (diff)
parentb234933dc60c7c85db36156b74b6e2c49b2ee9a9 (diff)
downloadsdk-e50f48d93f311c7143a051e2244d68c9f19507c5.zip
sdk-e50f48d93f311c7143a051e2244d68c9f19507c5.tar.gz
sdk-e50f48d93f311c7143a051e2244d68c9f19507c5.tar.bz2
Merge "pixel perfect: Disable controls" into studio-1.1-dev
automerge: b234933 * commit 'b234933dc60c7c85db36156b74b6e2c49b2ee9a9': pixel perfect: Disable controls
Diffstat (limited to 'eclipse')
-rw-r--r--eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/PixelPerfectLoupeView.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/PixelPerfectLoupeView.java b/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/PixelPerfectLoupeView.java
index bc45ff8..93ad598 100644
--- a/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/PixelPerfectLoupeView.java
+++ b/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/PixelPerfectLoupeView.java
@@ -82,9 +82,11 @@ public class PixelPerfectLoupeView extends ViewPart implements IImageChangeListe
new PixelPerfectPixelPanel(pixelPerfectLoupeBorder);
pixelPerfectPixelPanel.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
- PixelPerfectControls pixelPerfectControls =
- new PixelPerfectControls(parent);
- pixelPerfectControls.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
+ // https://code.google.com/p/android/issues/detail?id=69199
+ // Disabled until accessibility issues are fixed
+ // PixelPerfectControls pixelPerfectControls =
+ // new PixelPerfectControls(parent);
+ // pixelPerfectControls.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
placeActions();
}