Update of /cvsroot/qooxdoo/qooxdoo/source/script/appearance
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17885/source/script/appearance
Modified Files:
Tag: renderer
QxAppearanceTheme-Default.js
Log Message:
Minor bugfix
Index: QxAppearanceTheme-Default.js
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/appearance/Attic/QxAppearanceTheme-Default.js,v
retrieving revision 1.1.2.10
retrieving revision 1.1.2.11
diff -u -d -r1.1.2.10 -r1.1.2.11
--- QxAppearanceTheme-Default.js 24 Jan 2006 16:48:54 -0000 1.1.2.10
+++ QxAppearanceTheme-Default.js 25 Jan 2006 08:10:29 -0000 1.1.2.11
@@ -716,11 +716,17 @@
theme.registerAppearance("window-captionbar-title",
{
+ setup : function()
+ {
+ this.font = new QxFont(11, '"Segoe UI", Corbel, Calibri, Tahoma, "Lucida Sans Unicode", sans-serif');
+ this.font.setBold(true);
+ },
+
initial : function(vWidget, vTheme)
{
return {
cursor : QxConst.CORE_DEFAULT,
- font : QxConst.FONT_STYLE_BOLD,
+ font : this.font,
marginRight : 2
};
}
|