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 232723 Details for
Bug 411577
[Contributions] Customize Perspective has hiding conflicts for toolbars and menus
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.
Add prefix check
patchIds.txt (text/plain), 1.05 KB, created by
Jens Kuebler
on 2013-06-25 06:08:13 EDT
(
hide
)
Description:
Add prefix check
Filename:
MIME Type:
Creator:
Jens Kuebler
Created:
2013-06-25 06:08:13 EDT
Size:
1.05 KB
patch
obsolete
>Index: CustomizePerspectiveDialog.java >=================================================================== >--- CustomizePerspectiveDialog.java (revision 171342) >+++ CustomizePerspectiveDialog.java (working copy) >@@ -3335,7 +3335,7 @@ > // Remove explicitly 'visible' elements from the current list > for (Iterator<String> iterator = changedAndVisible.iterator(); iterator.hasNext();) { > String id = iterator.next(); >- if (id != null && currentHidden.contains(id)) { >+ if (id != null && currentHidden.contains(prefix + id)) { > hasChanges = true; > ((WorkbenchPage) window.getActivePage()).removeHiddenItems(prefix + id); > } >@@ -3344,7 +3344,7 @@ > // Add explicitly 'hidden' elements to the current list > for (Iterator<String> iterator = changedAndInvisible.iterator(); iterator.hasNext();) { > String id = iterator.next(); >- if (id != null && !currentHidden.contains(id)) { >+ if (id != null && !currentHidden.contains(prefix + id)) { > hasChanges = true; > ((WorkbenchPage) window.getActivePage()).addHiddenItems(prefix + id); > }
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 411577
: 232723