diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-08-28 13:59:07 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-08-28 13:59:07 (GMT) |
commit | 34d3fa8298631ce5cbfb4be427b0681c3ad1475c (patch) | |
tree | 269d22c9062424e0972042d28ebc1f38e369d179 | |
parent | 3e015bc690d012c2d7a83be914babd37cbd259c0 (diff) | |
download | tk-34d3fa8298631ce5cbfb4be427b0681c3ad1475c.zip tk-34d3fa8298631ce5cbfb4be427b0681c3ad1475c.tar.gz tk-34d3fa8298631ce5cbfb4be427b0681c3ad1475c.tar.bz2 |
[Bug 3562426]: Context menu goes out of edge of screen.
<p>PLEASE DON'T PUT THIS ASIDE TO A <b>MISTAKE</b> BRANCH OR SOMETHING!
It's simply a fork, in fossil there's nothing wrong with that!</p>
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | generic/tkMenuDraw.c | 2 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2012-08-28 Jan Nijtmans <nijtmans@users.sf.net> + + * generic/tkMenuDraw.c: [Bug 3562426]: Context menu goes out of edge of + screen. + 2012-08-17 Jan Nijtmans <nijtmans@users.sf.net> * win/nmakehlp.c: Add "-V<num>" option, in order to be able diff --git a/generic/tkMenuDraw.c b/generic/tkMenuDraw.c index 7c69548..d4634cd 100644 --- a/generic/tkMenuDraw.c +++ b/generic/tkMenuDraw.c @@ -896,12 +896,14 @@ TkPostTearoffMenu(interp, menuPtr, x, y) Tk_GetVRootGeometry(Tk_Parent(menuPtr->tkwin), &vRootX, &vRootY, &vRootWidth, &vRootHeight); + vRootWidth -= Tk_ReqWidth(menuPtr->tkwin); if (x > vRootX + vRootWidth) { x = vRootX + vRootWidth; } if (x < vRootX) { x = vRootX; } + vRootHeight -= Tk_ReqHeight(menuPtr->tkwin); if (y > vRootY + vRootHeight) { y = vRootY + vRootHeight; } |