am f519910b: Merge change 26983 into eclair

Merge commit 'f519910b5624f7d7d7a16db482bc205c1b548837' into eclair-plus-aosp

* commit 'f519910b5624f7d7d7a16db482bc205c1b548837':
  Fix colSpan for screenshot display from 3 to 4 in DDMS.
This commit is contained in:
Xavier Ducrohet
2009-09-25 10:59:40 -07:00
committed by Android Git Automerger

View File

@@ -159,13 +159,13 @@ public class ScreenShotDialog extends Dialog {
mBusyLabel = new Label(shell, SWT.NONE);
mBusyLabel.setText("Preparing...");
data = new GridData(GridData.HORIZONTAL_ALIGN_BEGINNING);
data.horizontalSpan = 3;
data.horizontalSpan = colCount;
mBusyLabel.setLayoutData(data);
// space for the image
mImageLabel = new Label(shell, SWT.BORDER);
data = new GridData(GridData.HORIZONTAL_ALIGN_CENTER);
data.horizontalSpan = 3;
data.horizontalSpan = colCount;
mImageLabel.setLayoutData(data);
Display display = shell.getDisplay();
mImageLabel.setImage(ImageHelper.createPlaceHolderArt(