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 113057 Details for
Bug 244475
outline does not expand comments from collapsed subsections
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.
[patch]
simpler solution
clipboard.txt (text/plain), 2.10 KB, created by
Steffen Pingel
on 2008-09-20 02:36:48 EDT
(
hide
)
Description:
simpler solution
Filename:
MIME Type:
Creator:
Steffen Pingel
Created:
2008-09-20 02:36:48 EDT
Size:
2.10 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.mylyn.tasks.ui >Index: src/org/eclipse/mylyn/tasks/ui/editors/AbstractTaskEditorPage.java >=================================================================== >RCS file: /cvsroot/tools/org.eclipse.mylyn/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasks/ui/editors/AbstractTaskEditorPage.java,v >retrieving revision 1.80 >diff -u -r1.80 AbstractTaskEditorPage.java >--- src/org/eclipse/mylyn/tasks/ui/editors/AbstractTaskEditorPage.java 12 Sep 2008 04:19:26 -0000 1.80 >+++ src/org/eclipse/mylyn/tasks/ui/editors/AbstractTaskEditorPage.java 20 Sep 2008 06:36:21 -0000 >@@ -1,5 +1,5 @@ > /******************************************************************************* >-* Copyright (c) 2004, 2008 Tasktop Technologies and others. >+ * Copyright (c) 2004, 2008 Tasktop Technologies and others. > * All rights reserved. This program and the accompanying materials > * are made available under the terms of the Eclipse Public License v1.0 > * which accompanies this distribution, and is available at >@@ -139,6 +139,7 @@ > import org.eclipse.ui.forms.widgets.FormToolkit; > import org.eclipse.ui.forms.widgets.Hyperlink; > import org.eclipse.ui.forms.widgets.ScrolledForm; >+import org.eclipse.ui.forms.widgets.Section; > import org.eclipse.ui.handlers.IHandlerService; > import org.eclipse.ui.views.contentoutline.IContentOutlinePage; > >@@ -886,6 +887,17 @@ > if (actionPart != null && actionPart.getControl() instanceof ExpandableComposite) { > EditorUtil.toggleExpandableComposite(true, > (ExpandableComposite) actionPart.getControl()); >+ if (actionPart.getControl() instanceof Section) { >+ Control client = ((Section) actionPart.getControl()).getClient(); >+ if (client instanceof Composite) { >+ for (Control control : ((Composite) client).getChildren()) { >+ // toggle subsections >+ if (control instanceof Section) { >+ EditorUtil.toggleExpandableComposite(true, (Section) control); >+ } >+ } >+ } >+ } > } > } > EditorUtil.reveal(form, attribute.getId());
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 Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 244475
:
110290
|
110765
| 113057 |
113058