| Summary: | [CTabFolder] Click on >> does not work | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [RT] RAP | Reporter: | Cho HyunJong <hangum> | ||||
| Component: | RWT | Assignee: | Project Inbox <rap-inbox> | ||||
| Status: | RESOLVED FIXED | QA Contact: | |||||
| Severity: | normal | ||||||
| Priority: | P2 | ||||||
| Version: | 2.3 | ||||||
| Target Milestone: | 2.3 M3 | ||||||
| Hardware: | PC | ||||||
| OS: | Mac OS X | ||||||
| Whiteboard: | |||||||
| Attachments: |
|
||||||
Created attachment 242176 [details]
tabfolder sample
Reproducible with Controls Demo -> CTabFolder tab. Click on chevron (>>) or tab item close button does not send notify operation if there is no listener attached. This regression has been introduced with change https://git.eclipse.org/r/#/c/22245/. Thanks~ 고맙습니다. Fixed in master with change https://git.eclipse.org/r/#/c/25389/. |
Screen to move the tab when you click the >> button that appears when the screen is narrow does not appear. Test Version : rap-2.3.0-M2-20140311-0943 Test OS : MAC OS X Test Browser : Chrome Thanks RAP Team. - Sample Code public class BasicEntryPoint extends AbstractEntryPoint { @Override protected void createContents(Composite parent) { parent.setLayout(new GridLayout()); final CTabFolder tabFolder = new CTabFolder(parent, SWT.BORDER); tabFolder.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false)); for (int i = 0; i < 10; i++) { CTabItem item = new CTabItem(tabFolder, SWT.CLOSE); item.setText("Item " + i); Text text = new Text(tabFolder, SWT.MULTI | SWT.V_SCROLL | SWT.H_SCROLL); text.setText("TabItem position is " + i); item.setControl(text); } } }