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 80005 Details for
Bug 205872
[JFace] ToolTip position wrong with multiple monitors
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), 1.00 KB, created by
Steffen Pingel
on 2007-10-09 17:23:54 EDT
(
hide
)
Description:
fix
Filename:
MIME Type:
Creator:
Steffen Pingel
Created:
2007-10-09 17:23:54 EDT
Size:
1.00 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.jface >Index: src/org/eclipse/jface/window/ToolTip.java >=================================================================== >RCS file: /cvsroot/eclipse/org.eclipse.jface/src/org/eclipse/jface/window/ToolTip.java,v >retrieving revision 1.8 >diff -u -r1.8 ToolTip.java >--- src/org/eclipse/jface/window/ToolTip.java 21 Mar 2007 15:46:16 -0000 1.8 >+++ src/org/eclipse/jface/window/ToolTip.java 9 Oct 2007 21:23:27 -0000 >@@ -371,12 +371,12 @@ > } > > if (!(bounds.contains(location) && bounds.contains(rightBounds))) { >- if (rightBounds.x > bounds.width) { >- location.x -= rightBounds.x - bounds.width; >+ if (rightBounds.x > bounds.x + bounds.width) { >+ location.x -= rightBounds.x - (bounds.x + bounds.width); > } > >- if (rightBounds.y > bounds.height) { >- location.y -= rightBounds.y - bounds.height; >+ if (rightBounds.y > bounds.y + bounds.height) { >+ location.y -= rightBounds.y - (bounds.y + bounds.height); > } > > if (location.x < bounds.x) {
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 205872
: 80005 |
80006