From f4cf4a95f73b53ac9c0a6e3c93d9676d2877598e Mon Sep 17 00:00:00 2001 From: das Date: Fri, 14 Aug 2009 14:51:02 +0000 Subject: * macosx/tkMacOSXWm.c: Workaround for textured windows being draggable from opaque content areas. [Bug 2824538] (walzer) --- ChangeLog | 9 +++++++++ macosx/tkMacOSXWm.c | 10 +++++++++- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 58ba5de..5b08e80 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2009-08-14 Daniel Steffen + + * 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 * 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; -- cgit v0.12