We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c05bfb5 commit 0488cf9Copy full SHA for 0488cf9
src/app/qgsattributetable.cpp
@@ -78,7 +78,13 @@ QgsAttributeTable::QgsAttributeTable( QWidget * parent ) :
78
mPreviousSortIndicatorColumn( -1 )
79
{
80
QFont f( font() );
81
- f.setPointSize( f.pointSize() - 2 );
+#ifdef Q_WS_MAC
82
+ // The default application font for OS X is Lucida Grande 13 point; for small, use 11 point
83
+ f.setPointSize( 11 );
84
+#else
85
+ f.setFamily( "Helvetica" );
86
+ f.setPointSize( 9 );
87
+#endif
88
setFont( f );
89
mDelegate = new QgsAttributeTableItemDelegate( this );
90
setItemDelegate( mDelegate );
0 commit comments