diff options
author | Tor Norbye <tnorbye@google.com> | 2012-10-24 15:33:26 -0700 |
---|---|---|
committer | Tor Norbye <tnorbye@google.com> | 2012-10-24 15:33:26 -0700 |
commit | 14e60b9717d70165308cc8a328a92e1f5d94ad3a (patch) | |
tree | 584e8a713a7cd86e484a0e6f0fec61678bff6d52 /sdkmanager | |
parent | c3fa0391879acd10e613e3aa8d725f14f67fc149 (diff) | |
download | sdk-14e60b9717d70165308cc8a328a92e1f5d94ad3a.zip sdk-14e60b9717d70165308cc8a328a92e1f5d94ad3a.tar.gz sdk-14e60b9717d70165308cc8a328a92e1f5d94ad3a.tar.bz2 |
One more device menu tweak
Change-Id: I95c2c0cbfbb937cb99623207d21a056f695d973d
Diffstat (limited to 'sdkmanager')
-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); |