summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authordas <das@noemail.net>2009-08-14 14:51:01 (GMT)
committerdas <das@noemail.net>2009-08-14 14:51:01 (GMT)
commit5b31158c0d3cf3bf601270f83f0fb00031c10045 (patch)
treee55f9c2f14c974a5fc96e863d8735bfdfe5cdbd4 /macosx
parent40aa3c3c18b1349ec07685803b18fe8c08aaf8e8 (diff)
downloadtk-5b31158c0d3cf3bf601270f83f0fb00031c10045.zip
tk-5b31158c0d3cf3bf601270f83f0fb00031c10045.tar.gz
tk-5b31158c0d3cf3bf601270f83f0fb00031c10045.tar.bz2
* macosx/tkMacOSXWm.c: Workaround for textured windows being draggable
from opaque content areas. [Bug 2824538] (walzer) FossilOrigin-Name: 2caf03972c6ec713fd31ce6c6ffc421f87291b3d
Diffstat (limited to 'macosx')
-rw-r--r--macosx/tkMacOSXWm.c10
1 files changed, 9 insertions, 1 deletions
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;