[PC-BSD Commits] r2125 - pcbsd/trunk/PCInstall
svn at pcbsd.org
svn at pcbsd.org
Thu Jun 19 07:09:30 PDT 2008
Author: kris
Date: 2008-06-19 07:09:29 -0700 (Thu, 19 Jun 2008)
New Revision: 2125
Modified:
pcbsd/trunk/PCInstall/main.cpp
Log:
Updated font to default to dejavu and size 12 with new installer
Modified: pcbsd/trunk/PCInstall/main.cpp
===================================================================
--- pcbsd/trunk/PCInstall/main.cpp 2008-06-19 14:00:10 UTC (rev 2124)
+++ pcbsd/trunk/PCInstall/main.cpp 2008-06-19 14:09:29 UTC (rev 2125)
@@ -65,10 +65,10 @@
QFont f( "vlgothic", 10);
a.setFont( f);
} else if (nlang == "en" || nlang == "" ) {
- QFont f( "Sans Serif", 10);
+ QFont f( "Dejavu", 12);
a.setFont( f);
} else {
- QFont f( "Sans Serif", 10);
+ QFont f( "Dejavu", 12);
a.setFont( f);
}
More information about the Commits
mailing list