Skip to content

Commit

Permalink
- Summary: No Browse button on line chart Marker Icon Selector for
Browse files Browse the repository at this point in the history
Embedded Image in Japanese locale. on behalf of Shuai Zhang
    
- Bugzilla Bug (s) Resolved:
    
- Description:
The Embedded Type description's layout is unreasonable.
  • Loading branch information
shuai zhang authored and heli committed Mar 26, 2012
1 parent 9b8eaeb commit 479aaaa
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -353,10 +353,11 @@ private void switchToEmbeddedType( )
buttonBar.setLayoutData( new GridData( GridData.FILL_HORIZONTAL ) );
buttonBar.setLayout( gl );

Label description = new Label( buttonBar, SWT.NONE );
description.setLayoutData( new GridData( GridData.HORIZONTAL_ALIGN_BEGINNING ) );
description.setText( Messages.getString("MarkerIconDialog.Label.Description.EmbeddedImage") ); //$NON-NLS-1$

Label description = new Label( buttonBar, SWT.WRAP );
description.setLayoutData( new GridData( GridData.FILL_HORIZONTAL
| GridData.HORIZONTAL_ALIGN_BEGINNING ) );
description.setText( Messages.getString( "MarkerIconDialog.Label.Description.EmbeddedImage" ) ); //$NON-NLS-1$

btnBrowse = new Button( buttonBar, SWT.PUSH );
btnBrowse.setText( Messages.getString( "MarkerIconDialog.Lbl.Browse" ) ); //$NON-NLS-1$
GridData gd = new GridData( GridData.HORIZONTAL_ALIGN_END );
Expand Down

0 comments on commit 479aaaa

Please sign in to comment.