Skip to content

Commit

Permalink
Fix UI view inconsistency
Browse files Browse the repository at this point in the history
Ensure that two "Browse" buttons has same width.

Signed-off-by: Anton Kolesov <Anton.Kolesov@synopsys.com>
  • Loading branch information
anthony-kolesov committed Dec 9, 2014
1 parent 3b3e2ec commit b94390d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -900,7 +900,7 @@ public void modifyText(ModifyEvent evt) {


fSearchexternalButton = createPushButton(compCOM, "Browse", null); //$NON-NLS-1$ //6-2
gd = new GridData(SWT.BEGINNING);
gd = new GridData(GridData.FILL_HORIZONTAL);
fSearchexternalButton.setLayoutData(gd);
fSearchexternalButton.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent evt) {
Expand Down

0 comments on commit b94390d

Please sign in to comment.