Community
Participate
Working Groups
RC1 When the workspace starts up the default button for the workspace dialog is the Browse button which means you cannot just hit OK to start. This is OK on Windows so I suspect this is a problem on Solaris when the default button is not set
Also, pressing tab should eventually select Cancel; this works on xp but not on solaris. As far as I can tell the code is correct. This dialog is actually derived from the jface jface Dialog class which is where the OK and Cancel buttons are added with: protected void createButtonsForButtonBar(Composite parent) { // create OK and Cancel buttons by default createButton(parent, IDialogConstants.OK_ID, IDialogConstants.OK_LABEL, true); createButton(parent, IDialogConstants.CANCEL_ID, IDialogConstants. CANCEL_LABEL, false); } There is no place in the ChooseWorkspaceDialog where a different button is selected as the default. The problems that I see are: 1. OK should be selected by default 2. Cancel should be in the tab order Forwarding to SWT for comment.
Solaris Motif is no longer a supported Eclipse platform.