am 007aece2: am f519910b: Merge change 26983 into eclair

Merge commit '007aece2843d42eb04aba591f35dd106af40e04c'

* commit '007aece2843d42eb04aba591f35dd106af40e04c':
  Fix colSpan for screenshot display from 3 to 4 in DDMS.
This commit is contained in:
Xavier Ducrohet
2009-09-25 11:27:20 -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(