diff options
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | macosx/tkMacOSXWm.c | 10 |
2 files changed, 18 insertions, 1 deletions
@@ -1,3 +1,12 @@ +2009-08-14 Daniel Steffen <das@users.sourceforge.net> + + * macosx/tkMacOSXDraw.c: Avoid exception in XCopyArea() when copying + from toplevel that has never been mapped. (reported by Youness Alaoui + on tcl-mac) + + * macosx/tkMacOSXWm.c: Workaround for textured windows being draggable + from opaque content areas. [Bug 2824538] (walzer) + 2009-08-10 Jan Nijtmans <nijtmans@users.sf.net> * win/tkWinPixmap.c: Eliminate more gcc warnings diff --git a/macosx/tkMacOSXWm.c b/macosx/tkMacOSXWm.c index 17d4320..44a64a3 100644 --- a/macosx/tkMacOSXWm.c +++ b/macosx/tkMacOSXWm.c @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacOSXWm.c,v 1.76 2009/07/06 20:29:21 dkf Exp $ + * RCS: @(#) $Id: tkMacOSXWm.c,v 1.77 2009/08/14 14:51:02 das Exp $ */ #include "tkMacOSXPrivate.h" @@ -5342,6 +5342,14 @@ TkMacOSXMakeRealWindowExist( if (styleMask & NSUtilityWindowMask) { [(NSPanel*)window setFloatingPanel:YES]; } + if ((styleMask & (NSTexturedBackgroundWindowMask|NSHUDWindowMask)) && + !(styleMask & NSDocModalWindowMask)) { + /* + * Workaround for [Bug 2824538]: Texured windows are draggable + * from opaque content. + */ + [window setMovableByWindowBackground:NO]; + } [window setDocumentEdited:NO]; wmPtr->window = window; macWin->view = contentView; |