Skip to content

Commit 3c22aff

Browse files
committedApr 28, 2015
Fix usability issue in attributetable
The height of rows is too small to see its contents on hidpi screens
1 parent d1fa244 commit 3c22aff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/gui/attributetable/qgsattributetableview.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ QgsAttributeTableView::QgsAttributeTableView( QWidget *parent )
4545
QSettings settings;
4646
restoreGeometry( settings.value( "/BetterAttributeTable/geometry" ).toByteArray() );
4747

48-
verticalHeader()->setDefaultSectionSize( 20 );
48+
//verticalHeader()->setDefaultSectionSize( 20 );
4949
horizontalHeader()->setHighlightSections( false );
5050

5151
mTableDelegate = new QgsAttributeTableDelegate( this );

0 commit comments

Comments
 (0)
Please sign in to comment.