[fusion-commits] r2478 - trunk/widgets/Redline

svn_fusion at osgeo.org svn_fusion at osgeo.org
Fri Dec 2 01:18:49 EST 2011


Author: liuar
Date: 2011-12-01 22:18:49 -0800 (Thu, 01 Dec 2011)
New Revision: 2478

Modified:
   trunk/widgets/Redline/newmarkup.php
Log:
Fix ticket #499 Solid color will not be remembered as "background color" when opening again.

Modified: trunk/widgets/Redline/newmarkup.php
===================================================================
--- trunk/widgets/Redline/newmarkup.php	2011-12-02 05:21:08 UTC (rev 2477)
+++ trunk/widgets/Redline/newmarkup.php	2011-12-02 06:18:49 UTC (rev 2478)
@@ -145,7 +145,7 @@
                 return;
 				
             height = allowTransparency? 470: 445;
-            w = window.open("../../layers/MapGuide/php/ColorPicker.php?LOCALE=en&CLR=" + clr + "&ALLOWTRANS=" + (allowTransparency? "1":"0") + "&TRANS=" + (transparent?"1":"0"), "colorPicker", "toolbar=no,status=no,width=355,height=" + height);
+            w = window.open("../../layers/MapGuide/php/ColorPicker.php?LOCALE=en&CLR=" + clr + "&ALLOWTRANS=" + (allowTransparency? "1":"0") + "&TRANS=" + (transparent.value == "true"? "1":"0"), "colorPicker", "toolbar=no,status=no,width=355,height=" + height);
             w.focus();
         }
 



More information about the fusion-commits mailing list