Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormkersten2005-09-24 00:05:20 +0000
committermkersten2005-09-24 00:05:20 +0000
commit277670dcc1297b456d1ff5e0be471752cf395ca9 (patch)
treee39f6070b06eff587827aa8cb533503ea26879e3
parentd90cb7694af7f3ae84053ec67220ae1ebedbb476 (diff)
downloadorg.eclipse.mylyn.tasks-277670dcc1297b456d1ff5e0be471752cf395ca9.tar.gz
org.eclipse.mylyn.tasks-277670dcc1297b456d1ff5e0be471752cf395ca9.tar.xz
org.eclipse.mylyn.tasks-277670dcc1297b456d1ff5e0be471752cf395ca9.zip
Fixed Bugzilla Bug 110464: make active search check box selections disjoint
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasklist/ui/views/ToolTipHandler.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasklist/ui/views/ToolTipHandler.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasklist/ui/views/ToolTipHandler.java
index 636fff811..ce215f72b 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasklist/ui/views/ToolTipHandler.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasklist/ui/views/ToolTipHandler.java
@@ -251,7 +251,7 @@ public class ToolTipHandler {
Rectangle shellBounds = shell.getBounds();
shellBounds.x = Math.max(Math.min(position.x, displayBounds.width
- shellBounds.width), 0);
- shellBounds.y = Math.max(Math.min(position.y +1, displayBounds.height
+ shellBounds.y = Math.max(Math.min(position.y +10, displayBounds.height
- shellBounds.height), 0);
shell.setBounds(shellBounds);
}

Back to the top