diff options
author | Tor Norbye <tnorbye@google.com> | 2015-02-05 22:36:53 +0000 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2015-02-05 22:36:53 +0000 |
commit | e50f48d93f311c7143a051e2244d68c9f19507c5 (patch) | |
tree | 6015ffd3940dedacfbaa33ad0a0165358bf35785 /eclipse/plugins | |
parent | 9042534a2f70c86840c8594c280594f2c4c916bd (diff) | |
parent | b234933dc60c7c85db36156b74b6e2c49b2ee9a9 (diff) | |
download | sdk-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/plugins')
-rw-r--r-- | eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/PixelPerfectLoupeView.java | 8 |
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(); } |