Update of /cvsroot/qooxdoo/qooxdoo/source/script/appearance
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10870/source/script/appearance
Modified Files:
Tag: renderer
QxAppearanceTheme-Default.js
Log Message:
Improved blocker code, moved more styling to appearance
Index: QxAppearanceTheme-Default.js
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/appearance/Attic/QxAppearanceTheme-Default.js,v
retrieving revision 1.1.2.11
retrieving revision 1.1.2.12
diff -u -d -r1.1.2.11 -r1.1.2.12
--- QxAppearanceTheme-Default.js 25 Jan 2006 08:10:29 -0000 1.1.2.11
+++ QxAppearanceTheme-Default.js 25 Jan 2006 09:19:16 -0000 1.1.2.12
@@ -76,8 +76,12 @@
{
initial : function(vWidget, vTheme)
{
+ // You could also use: "core/dotted_white.gif" for example as backgroundImage here
+ // (Visible) background tiles could be dramatically slow down mshtml!
+ // A background image or color is always needed for mshtml to block the events successfully.
return {
- cursor : QxConst.CORE_DEFAULT
+ cursor : QxConst.CORE_DEFAULT,
+ backgroundImage : QxImageManager.getBlank()
};
}
});
|