[Qooxdoo-commit] qooxdoo/source/script/widgets QxSpinner.js,1.9.2.27,1.9.2.28
Brought to you by:
ecker,
martinwittemann
|
From: Sebastian W. <wp...@us...> - 2006-01-25 11:19:09
|
Update of /cvsroot/qooxdoo/qooxdoo/source/script/widgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17673/source/script/widgets Modified Files: Tag: renderer QxSpinner.js Log Message: Fixed fontSize problem of spinner locally Index: QxSpinner.js =================================================================== RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/QxSpinner.js,v retrieving revision 1.9.2.27 retrieving revision 1.9.2.28 diff -u -d -r1.9.2.27 -r1.9.2.28 --- QxSpinner.js 17 Jan 2006 16:12:06 -0000 1.9.2.27 +++ QxSpinner.js 25 Jan 2006 11:19:00 -0000 1.9.2.28 @@ -41,6 +41,10 @@ // BEHAVIOR // ************************************************************************ this.setTabIndex(-1); + + if (QxClient.isMshtml()) { + this.setStyleProperty("fontSize", QxConst.CORE_0PIXEL); + }; // ************************************************************************ |