SEBSERV-429 fix
This commit is contained in:
parent
7ef5f91d42
commit
b85f726461
1 changed files with 2 additions and 1 deletions
|
@ -213,6 +213,7 @@ interface CellFieldBuilderAdapter {
|
|||
|
||||
class ExpandBarCellFieldBuilderAdapter implements CellFieldBuilderAdapter {
|
||||
|
||||
public static final int HEIGHT_PER_FIELD = 26;
|
||||
final Map<String, Collection<Orientation>> orientationsOfExpandBar;
|
||||
|
||||
int x = 100;
|
||||
|
@ -278,7 +279,7 @@ interface CellFieldBuilderAdapter {
|
|||
this.width,
|
||||
labelKey);
|
||||
|
||||
expandItem.setHeight(this.height * 23);
|
||||
expandItem.setHeight(this.height * HEIGHT_PER_FIELD);
|
||||
final Composite body = (Composite) expandItem.getControl();
|
||||
final ViewGridBuilder expandBuilder = new ViewGridBuilder(
|
||||
body,
|
||||
|
|
Loading…
Reference in a new issue