|
From: <and...@us...> - 2009-09-18 16:55:13
|
Revision: 1829
http://frontierkernel.svn.sourceforge.net/frontierkernel/?rev=1829&view=rev
Author: andreradke
Date: 2009-09-18 16:55:05 +0000 (Fri, 18 Sep 2009)
Log Message:
-----------
Fix for Carbon OS X display glitch -- don't gray windows while saving because it would sometimes gray out the menubar and then let it stay grayed out indefinitely.
Modified Paths:
--------------
Frontier/trunk/Common/source/shellfile.c
Modified: Frontier/trunk/Common/source/shellfile.c
===================================================================
--- Frontier/trunk/Common/source/shellfile.c 2009-09-16 20:20:56 UTC (rev 1828)
+++ Frontier/trunk/Common/source/shellfile.c 2009-09-18 16:55:05 UTC (rev 1829)
@@ -369,6 +369,9 @@
7.0b16 PBS: Fix for Windows display glitch -- don't gray windows for save
if this is Windows, it leads to the display getting messed up for the frontmost
outline.
+
+ 2009-09-18 aradke: Fix for Carbon OS X display glitch -- don't gray windows while saving
+ because it would sometimes gray out the menubar and then let it stay grayed out indefinitely.
*/
initbeachball (left);
@@ -378,7 +381,8 @@
else
shellpartialeventloop (updateMask);
-#ifdef MACVERSION /*7.0b16 PBS: only Macs get grayed windows. Fix for Windows display glitch.*/
+#if 0 /*7.0b16 PBS: only Macs get grayed windows. Fix for Windows display glitch.*/
+ /*2009-09-18 aradke: graying out now causes display glitch on Mac OS X too */
#if TARGET_API_MAC_CARBON
{
//only gray the front window
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|