Skip to content

Commit

Permalink
fix RC5, IDEA, AES cutting of UI elements in dialog under windows #219
Browse files Browse the repository at this point in the history
  • Loading branch information
simlei committed Aug 12, 2020
1 parent 503e484 commit 18c152b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,11 +166,11 @@ public IntegratorWizardPage(String page_title, String title, String header_descr
* @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite)
*/
public void createControl(Composite parent) {
parent.setLayout(new GridLayout());
// parent.setLayout(new GridLayout());

masterComp = new Composite(parent, SWT.NONE);
masterComp.setLayout(new GridLayout(1, true));
GridData masterLData = new GridData(SWT.FILL, SWT.BEGINNING, true, false);
GridData masterLData = new GridData(SWT.FILL, SWT.FILL, true, true);
masterLData.heightHint = calculateHeightHintForPage();
masterComp.setLayoutData(masterLData);

Expand Down

0 comments on commit 18c152b

Please sign in to comment.