diff options
author | Raphaƫl Moll <ralf@android.com> | 2012-10-24 15:35:11 -0700 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2012-10-24 15:35:12 -0700 |
commit | 650d08173e6401b382a832692f6e18517c73e540 (patch) | |
tree | e479192161611c78bf63f9bbc492bc7b252150b7 | |
parent | 1b4dcedbe0639750ceb2c939e664ecff2591a807 (diff) | |
parent | 14e60b9717d70165308cc8a328a92e1f5d94ad3a (diff) | |
download | sdk-650d08173e6401b382a832692f6e18517c73e540.zip sdk-650d08173e6401b382a832692f6e18517c73e540.tar.gz sdk-650d08173e6401b382a832692f6e18517c73e540.tar.bz2 |
Merge "One more device menu tweak"
-rwxr-xr-x | sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/ui/DeviceManagerPage.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/ui/DeviceManagerPage.java b/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/ui/DeviceManagerPage.java index ad0ee6f..e5d94fb 100755 --- a/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/ui/DeviceManagerPage.java +++ b/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/ui/DeviceManagerPage.java @@ -240,13 +240,15 @@ public class DeviceManagerPage extends Composite new Label(legend, SWT.NONE).setText("A user-created device definition."); new Label(legend, SWT.NONE).setImage(mGenericImage); new Label(legend, SWT.NONE).setText("A generic device definition."); - new Label(legend, SWT.NONE).setImage(mOtherImage); + Label icon = new Label(legend, SWT.NONE); + icon.setImage(mOtherImage); Label l = new Label(legend, SWT.NONE); l.setText("A manufacturer-specific device definition."); GridData gd; l.setLayoutData(gd = new GridData(GridData.FILL_HORIZONTAL)); gd.horizontalSpan = 3; - + icon.setVisible(false); + l.setVisible(false); // create the table columns final TableColumn column0 = new TableColumn(mTable, SWT.NONE); |