Skip to content

Commit b94390d

Browse files
Fix UI view inconsistency
Ensure that two "Browse" buttons has same width. Signed-off-by: Anton Kolesov <[email protected]>
1 parent 3b3e2ec commit b94390d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

com.arc.embeddedcdt/src/com/arc/embeddedcdt/gui/RemoteGDBDebuggerPage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -900,7 +900,7 @@ public void modifyText(ModifyEvent evt) {
900900

901901

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

0 commit comments

Comments
 (0)