Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 45095
Collapse All | Expand All

(-)AbstractInformationControlManager.java (-3 / +3 lines)
Lines 710-716 Link Here
710
			if (lowerRightX > displayLowerRightX)
710
			if (lowerRightX > displayLowerRightX)
711
				location.x= location.x - (lowerRightX - displayLowerRightX);
711
				location.x= location.x - (lowerRightX - displayLowerRightX);
712
712
713
			return (location.x >= 0 && location.y >= 0);
713
			return (location.x >= displayArea.x && location.y >= displayArea.y);
714
714
715
		} else if (ANCHOR_RIGHT == anchor || ANCHOR_LEFT == anchor) {
715
		} else if (ANCHOR_RIGHT == anchor || ANCHOR_LEFT == anchor) {
716
716
Lines 725-731 Link Here
725
			if (lowerRightY > displayLowerRightY)
725
			if (lowerRightY > displayLowerRightY)
726
				location.y= location.y - (lowerRightY - displayLowerRightY);
726
				location.y= location.y - (lowerRightY - displayLowerRightY);
727
727
728
			return (location.x >= 0 && location.y >= 0);
728
			return (location.x >= displayArea.x && location.y >= displayArea.y);
729
729
730
		} else if (ANCHOR_GLOBAL == anchor) {
730
		} else if (ANCHOR_GLOBAL == anchor) {
731
731
Lines 735-741 Link Here
735
			if (lowerRightY > displayLowerRightY)
735
			if (lowerRightY > displayLowerRightY)
736
				location.y= location.y - (lowerRightY - displayLowerRightY);
736
				location.y= location.y - (lowerRightY - displayLowerRightY);
737
737
738
			return (location.x >= 0 && location.y >= 0);
738
			return (location.x >= displayArea.x && location.y >= displayArea.y);
739
		}
739
		}
740
740
741
		return false;
741
		return false;

Return to bug 45095