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 173153 Details for
Bug 314453
Disable spell checking in Chrome
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]
Fix
clipboard.txt (text/plain), 2.57 KB, created by
RĂ¼diger Herrmann
on 2010-06-30 16:04:39 EDT
(
hide
)
Description:
Fix
Filename:
MIME Type:
Creator:
RĂ¼diger Herrmann
Created:
2010-06-30 16:04:39 EDT
Size:
2.57 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.rap.rwt.q07 >Index: js/org/eclipse/swt/TextUtil.js >=================================================================== >RCS file: /cvsroot/rt/org.eclipse.rap/runtime.rwt/org.eclipse.rap.rwt.q07/js/org/eclipse/swt/TextUtil.js,v >retrieving revision 1.36 >diff -u -r1.36 TextUtil.js >--- js/org/eclipse/swt/TextUtil.js 12 May 2010 13:20:24 -0000 1.36 >+++ js/org/eclipse/swt/TextUtil.js 30 Jun 2010 20:04:05 -0000 >@@ -35,7 +35,6 @@ > org.eclipse.swt.TextUtil._onAppearInitialize ); > } > text.setLiveUpdate( true ); >- text.setSpellCheck( false ); > // [if] Prevent selection of all text on tab focus > text._ontabfocus = function() { > text.setSelectionLength( 0 ); >Index: js/org/eclipse/swt/Application.js >=================================================================== >RCS file: /cvsroot/rt/org.eclipse.rap/runtime.rwt/org.eclipse.rap.rwt.q07/js/org/eclipse/swt/Application.js,v >retrieving revision 1.35 >diff -u -r1.35 Application.js >--- js/org/eclipse/swt/Application.js 27 Apr 2010 08:46:14 -0000 1.35 >+++ js/org/eclipse/swt/Application.js 30 Jun 2010 20:04:05 -0000 >@@ -150,8 +150,12 @@ > var doc = qx.ui.core.ClientDocument.getInstance(); > doc.addEventListener( "windowresize", > org.eclipse.swt.Application._onResize ); >+ // Install key-listener to prevent certain keys from being processed > doc.addEventListener( "keypress", > org.eclipse.swt.Application._onKeyPress ); >+ // Disable spell-checking in general >+ doc.getElement().setAttribute( "spellcheck", "false" ); >+ // Gecko-specific settings > if( qx.core.Variant.isSet( "qx.client", "gecko" ) ) { > // Prevent url-dropping in FF as a whole (see bug 304651) > doc.getElement().setAttribute( "ondrop", "event.preventDefault();" ); >Index: js/org/eclipse/rwt/widgets/Text.js >=================================================================== >RCS file: /cvsroot/rt/org.eclipse.rap/runtime.rwt/org.eclipse.rap.rwt.q07/js/org/eclipse/rwt/widgets/Text.js,v >retrieving revision 1.4 >diff -u -r1.4 Text.js >--- js/org/eclipse/rwt/widgets/Text.js 6 Apr 2010 11:09:18 -0000 1.4 >+++ js/org/eclipse/rwt/widgets/Text.js 30 Jun 2010 20:04:05 -0000 >@@ -21,7 +21,6 @@ > this._inputOverflow = "auto"; > this.setAppearance( "text-area" ); > this.setAllowStretchY( true ); >- this.setSpellCheck( true ); > this.__oninput = > qx.lang.Function.bindEvent( this._oninputDomTextarea, this ); > }
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 314453
:
169980
|
170246
| 173153