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 25082 Details for
Bug 15734
[PropertiesView] PropertySheet displays wrong values with multiple selection
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]
Changed to use the LAST entry in the values array rather than the first
patch(15734).txt (text/plain), 885 bytes, created by
Eric Moffatt
on 2005-07-20 15:59:57 EDT
(
hide
)
Description:
Changed to use the LAST entry in the values array rather than the first
Filename:
MIME Type:
Creator:
Eric Moffatt
Created:
2005-07-20 15:59:57 EDT
Size:
885 bytes
patch
obsolete
>Index: PropertySheetEntry.java >=================================================================== >RCS file: /home/eclipse/org.eclipse.ui.views/src/org/eclipse/ui/views/properties/PropertySheetEntry.java,v >retrieving revision 1.19 >diff -u -r1.19 PropertySheetEntry.java >--- PropertySheetEntry.java 19 Jul 2005 14:54:23 -0000 1.19 >+++ PropertySheetEntry.java 20 Jul 2005 19:55:46 -0000 >@@ -721,8 +721,8 @@ > if (values.length == 0) > editValue = null; > else { >- // set the first value object as the entry's value >- Object newValue = values[0]; >+ // set the last value object as the entry's value (see bug 15734) >+ Object newValue = values[values.length-1]; > > // see if we should convert the value to an editable value > IPropertySource source = getPropertySource(newValue);
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 15734
: 25082 |
57701