Update of /cvsroot/qooxdoo/qooxdoo/source/script/widgets
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15560/source/script/widgets
Modified Files:
Tag: renderer
QxClientDocument.js
Log Message:
Fixed modal handling, many improvements
Index: QxClientDocument.js
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/QxClientDocument.js,v
retrieving revision 1.7.2.66
retrieving revision 1.7.2.67
diff -u -d -r1.7.2.66 -r1.7.2.67
--- QxClientDocument.js 24 Jan 2006 09:55:57 -0000 1.7.2.66
+++ QxClientDocument.js 24 Jan 2006 12:21:40 -0000 1.7.2.67
@@ -154,7 +154,7 @@
proto.block = function(vActiveChild)
{
// this.debug("BLOCK: " + vActiveChild.toHashCode());
-
+
this._blocker.show();
if (typeof QxWindow == QxConst.TYPEOF_FUNCTION && vActiveChild instanceof QxWindow)
@@ -175,7 +175,7 @@
proto.release = function(vActiveChild)
{
// this.debug("RELEASE: " + vActiveChild.toHashCode());
-
+
if (vActiveChild)
{
if (vActiveChild instanceof QxNativeWindow)
|