[QGIS Commit] r8993 - trunk/qgis/src/app
svn_qgis at osgeo.org
svn_qgis at osgeo.org
Tue Aug 5 11:28:59 EDT 2008
Author: timlinux
Date: 2008-08-05 11:28:58 -0400 (Tue, 05 Aug 2008)
New Revision: 8993
Modified:
trunk/qgis/src/app/qgsattributetable.cpp
Log:
Set the default font size to 9pt (we should really softcode this somewhere)
Modified: trunk/qgis/src/app/qgsattributetable.cpp
===================================================================
--- trunk/qgis/src/app/qgsattributetable.cpp 2008-08-05 10:09:40 UTC (rev 8992)
+++ trunk/qgis/src/app/qgsattributetable.cpp 2008-08-05 15:28:58 UTC (rev 8993)
@@ -67,7 +67,7 @@
{
QFont f(font());
f.setFamily("Helvetica");
- f.setPointSize(11);
+ f.setPointSize(9);
setFont(f);
mDelegate = new QgsAttributeTableItemDelegate(mFields, this);
setItemDelegate(mDelegate);
More information about the QGIS-commit
mailing list