Skip to content

Commit

Permalink
TEIIDDES-1711 On Create Table Dialog, the text on Native Query Tab ge…
Browse files Browse the repository at this point in the history
…ts clipped
  • Loading branch information
mdrillin committed May 13, 2013
1 parent 3273f82 commit 8a7b294
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1155,7 +1155,7 @@ Composite createNativeQueryPanel(Composite parent) {
nativeQueryHelpText.setForeground(Display.getCurrent().getSystemColor(SWT.COLOR_DARK_BLUE));
nativeQueryHelpText.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
((GridData)nativeQueryHelpText.getLayoutData()).horizontalSpan = 1;
((GridData)nativeQueryHelpText.getLayoutData()).heightHint = 50;
((GridData)nativeQueryHelpText.getLayoutData()).heightHint = 80;
((GridData)nativeQueryHelpText.getLayoutData()).widthHint = 360;
nativeQueryHelpText.setText(Messages.nativeQueryHelpText);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1252,7 +1252,7 @@ Composite createNativeQueryPanel(Composite parent) {
nativeQueryHelpText.setForeground(Display.getCurrent().getSystemColor(SWT.COLOR_DARK_BLUE));
nativeQueryHelpText.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
((GridData)nativeQueryHelpText.getLayoutData()).horizontalSpan = 1;
((GridData)nativeQueryHelpText.getLayoutData()).heightHint = 50;
((GridData)nativeQueryHelpText.getLayoutData()).heightHint = 80;
((GridData)nativeQueryHelpText.getLayoutData()).widthHint = 360;
nativeQueryHelpText.setText(Messages.nativeQueryHelpText);
}
Expand Down

0 comments on commit 8a7b294

Please sign in to comment.