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 37700 Details for
Bug 45095
[hovering] Marker tooltip position wrong for dual monitor setup
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]
Patch to allow valid negative coords for tooltips
patch.txt (text/plain), 1.32 KB, created by
Sean Montgomery
on 2006-04-04 20:48:04 EDT
(
hide
)
Description:
Patch to allow valid negative coords for tooltips
Filename:
MIME Type:
Creator:
Sean Montgomery
Created:
2006-04-04 20:48:04 EDT
Size:
1.32 KB
patch
obsolete
>Index: AbstractInformationControlManager.java >=================================================================== >RCS file: /cvsroot/eclipse/org.eclipse.jface.text/src/org/eclipse/jface/text/AbstractInformationControlManager.java,v >retrieving revision 1.33 >diff -u -r1.33 AbstractInformationControlManager.java >--- AbstractInformationControlManager.java 28 Mar 2006 16:39:25 -0000 1.33 >+++ AbstractInformationControlManager.java 5 Apr 2006 00:27:31 -0000 >@@ -710,7 +710,7 @@ > if (lowerRightX > displayLowerRightX) > location.x= location.x - (lowerRightX - displayLowerRightX); > >- return (location.x >= 0 && location.y >= 0); >+ return (location.x >= displayArea.x && location.y >= displayArea.y); > > } else if (ANCHOR_RIGHT == anchor || ANCHOR_LEFT == anchor) { > >@@ -725,7 +725,7 @@ > if (lowerRightY > displayLowerRightY) > location.y= location.y - (lowerRightY - displayLowerRightY); > >- return (location.x >= 0 && location.y >= 0); >+ return (location.x >= displayArea.x && location.y >= displayArea.y); > > } else if (ANCHOR_GLOBAL == anchor) { > >@@ -735,7 +735,7 @@ > if (lowerRightY > displayLowerRightY) > location.y= location.y - (lowerRightY - displayLowerRightY); > >- return (location.x >= 0 && location.y >= 0); >+ return (location.x >= displayArea.x && location.y >= displayArea.y); > } > > return false;
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 45095
: 37700