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 140962 Details for
Bug 282540
[CCombo] drop-down list is transparent
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]
Proposed fix
clipboard.txt (text/plain), 1.01 KB, created by
RĂ¼diger Herrmann
on 2009-07-07 09:57:35 EDT
(
hide
)
Description:
Proposed fix
Filename:
MIME Type:
Creator:
RĂ¼diger Herrmann
Created:
2009-07-07 09:57:35 EDT
Size:
1.01 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.rap.rwt.q07 >Index: js/org/eclipse/swt/widgets/Combo.js >=================================================================== >RCS file: /cvsroot/rt/org.eclipse.rap/runtime.rwt/org.eclipse.rap.rwt.q07/js/org/eclipse/swt/widgets/Combo.js,v >retrieving revision 1.22 >diff -u -r1.22 Combo.js >--- js/org/eclipse/swt/widgets/Combo.js 9 Jun 2009 11:19:16 -0000 1.22 >+++ js/org/eclipse/swt/widgets/Combo.js 7 Jul 2009 13:57:34 -0000 >@@ -181,9 +181,13 @@ > }, > > _onChangeBackgoundColor : function( evt ) { >- var value = evt.getValue(); >- this._field.setBackgroundColor( value ); >- this._list.setBackgroundColor( value ); >+ var color = evt.getValue(); >+ this._field.setBackgroundColor( color ); >+ if( color == null ) { >+ var tv = new org.eclipse.swt.theme.ThemeValues( {} ); >+ color = tv.getCssColor( "Combo", "background-color" ); >+ } >+ this._list.setBackgroundColor( color ); > }, > > _onChangeVisibility : function( evt ) {
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 282540
:
140878
| 140962 |
140986