Fix column alignment for new project parent suggestions

The state icons recently added by 34dfcd3235 ("Adding
display of project state to Projects -> List page") introduced a new
column, throwing off the alignment.  This caused the description to
appear as the project name and the name to be line wrapped on every
short strings like "Public-Projects".

Change-Id: I4aa9520db4c8951e97bcdf864324dfd7c685e11a
This commit is contained in:
Shawn Pearce
2013-12-20 17:19:09 -08:00
parent 4a5dffbe0b
commit b5b4486857

View File

@@ -214,8 +214,8 @@ public class CreateProjectScreen extends Screen {
}
});
table.setWidget(row, 1, projectLink);
table.setText(row, 2, k.description());
table.setWidget(row, 2, projectLink);
table.setText(row, 3, k.description());
setRowItem(row, k);
}