Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 281312 Details for
Bug 558584
[10.15] Tree scrolls hiding items on macOS 10.15
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
Snippet to reproduce
TreeSelectionTest.java (text/plain), 969 bytes, created by
Thomas Singer
on 2019-12-23 04:41:45 EST
(
hide
)
Description:
Snippet to reproduce
Filename:
MIME Type:
Creator:
Thomas Singer
Created:
2019-12-23 04:41:45 EST
Size:
969 bytes
patch
obsolete
>import org.eclipse.swt.*; >import org.eclipse.swt.layout.*; >import org.eclipse.swt.widgets.*; > >public class TreeSelectionTest { > > public static void main(String[] args) { > System.getProperties().put("org.eclipse.swt.display.useSystemTheme", "true"); > final Display display = new Display(); > > final Shell shell = new Shell(display); > shell.setLayout(new FillLayout()); > > final Tree tree = new Tree(shell, SWT.SINGLE | SWT.BORDER | SWT.FULL_SELECTION); > for (int i = 0; i < 4; i++) { > final TreeItem item = new TreeItem(tree, SWT.NONE); > item.setText("Node " + i); > if (i < 3) { > for (int j = 0; j < 5; j++) { > new TreeItem(item, SWT.NONE).setText("Child-node " + i + " " + j); > } > item.setExpanded(true); > } > } > > tree.setSelection(tree.getItem(tree.getItemCount() - 1)); > > shell.setSize(300, 400); > shell.open(); > > while (!shell.isDisposed()) { > if (!display.readAndDispatch()) { > display.sleep(); > } > } > > display.dispose(); > } >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 558584
: 281312 |
281313
|
281314