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:
@@ -159,13 +159,13 @@ public class ScreenShotDialog extends Dialog {
|
|||||||
mBusyLabel = new Label(shell, SWT.NONE);
|
mBusyLabel = new Label(shell, SWT.NONE);
|
||||||
mBusyLabel.setText("Preparing...");
|
mBusyLabel.setText("Preparing...");
|
||||||
data = new GridData(GridData.HORIZONTAL_ALIGN_BEGINNING);
|
data = new GridData(GridData.HORIZONTAL_ALIGN_BEGINNING);
|
||||||
data.horizontalSpan = 3;
|
data.horizontalSpan = colCount;
|
||||||
mBusyLabel.setLayoutData(data);
|
mBusyLabel.setLayoutData(data);
|
||||||
|
|
||||||
// space for the image
|
// space for the image
|
||||||
mImageLabel = new Label(shell, SWT.BORDER);
|
mImageLabel = new Label(shell, SWT.BORDER);
|
||||||
data = new GridData(GridData.HORIZONTAL_ALIGN_CENTER);
|
data = new GridData(GridData.HORIZONTAL_ALIGN_CENTER);
|
||||||
data.horizontalSpan = 3;
|
data.horizontalSpan = colCount;
|
||||||
mImageLabel.setLayoutData(data);
|
mImageLabel.setLayoutData(data);
|
||||||
Display display = shell.getDisplay();
|
Display display = shell.getDisplay();
|
||||||
mImageLabel.setImage(ImageHelper.createPlaceHolderArt(
|
mImageLabel.setImage(ImageHelper.createPlaceHolderArt(
|
||||||
|
|||||||
Reference in New Issue
Block a user