[PC-BSD Commits] r716 - pcbsd/trunk/PCInstall
svn at pcbsd.org
svn at pcbsd.org
Thu Sep 13 08:49:19 PDT 2007
Author: kris
Date: 2007-09-13 08:49:19 -0700 (Thu, 13 Sep 2007)
New Revision: 716
Modified:
pcbsd/trunk/PCInstall/main.cpp
pcbsd/trunk/PCInstall/pcinstall.ui.h
Log:
Changed the font sizes in installer to "10"
Modified: pcbsd/trunk/PCInstall/main.cpp
===================================================================
--- pcbsd/trunk/PCInstall/main.cpp 2007-09-13 15:40:00 UTC (rev 715)
+++ pcbsd/trunk/PCInstall/main.cpp 2007-09-13 15:49:19 UTC (rev 716)
@@ -40,7 +40,7 @@
int wid = desk->width(); // returns desktop width
int hig = desk->height(); // returns desktop height
- w.setGeometry((wid/2) - (896/2), (hig/2) - (672/2), 896, 672);
+ w.setGeometry((wid/2) - (896/2), (hig/2) - (680/2), 896, 680);
qApp = &a;
w.ProgramInit();
Modified: pcbsd/trunk/PCInstall/pcinstall.ui.h
===================================================================
--- pcbsd/trunk/PCInstall/pcinstall.ui.h 2007-09-13 15:40:00 UTC (rev 715)
+++ pcbsd/trunk/PCInstall/pcinstall.ui.h 2007-09-13 15:49:19 UTC (rev 716)
@@ -16,6 +16,8 @@
void PCInstall::ProgramInit()
{
+ QFont f( "Sans Serif", 10);
+ setFont( f );
// Set the variable to regenerate the custom slices
regenCustomSlices = 1;
@@ -2581,10 +2583,10 @@
void PCInstall::checkVmwareSystemSlot()
{
// If we are NOT running on vmware
- if(CheckVMware->normalExit() && CheckVMware->exitStatus() == 0 )
+ if(CheckVMware->normalExit() && CheckVMware->exitStatus() == 1 )
{
- QFont f( "Sans Serif", 10);
- setFont( f );
+ QFont f( "Sans Serif", 11);
+ setFont( f );
}
}
More information about the Commits
mailing list