Skip to content

Commit 6fb7ba2

Browse files
committedSep 29, 2014
[composer] Default to 30 visible rows for table items, increase maximum number of rows to 99999 (fix #11284)
1 parent b43a1e0 commit 6fb7ba2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎src/core/composer/qgscomposerattributetablev2.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ QgsComposerAttributeTableV2::QgsComposerAttributeTableV2( QgsComposition* compos
103103
, mVectorLayer( 0 )
104104
, mCurrentAtlasLayer( 0 )
105105
, mComposerMap( 0 )
106-
, mMaximumNumberOfFeatures( 5 )
106+
, mMaximumNumberOfFeatures( 30 )
107107
, mShowUniqueRowsOnly( false )
108108
, mShowOnlyVisibleFeatures( false )
109109
, mFilterToAtlasIntersection( false )

‎src/ui/qgscomposerattributetablewidgetbase.ui

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<property name="geometry">
4646
<rect>
4747
<x>0</x>
48-
<y>-340</y>
48+
<y>0</y>
4949
<width>392</width>
5050
<height>1132</height>
5151
</rect>
@@ -154,7 +154,7 @@
154154
<item row="0" column="1">
155155
<widget class="QSpinBox" name="mMaximumRowsSpinBox">
156156
<property name="maximum">
157-
<number>999</number>
157+
<number>99999</number>
158158
</property>
159159
</widget>
160160
</item>

0 commit comments

Comments
 (0)
Please sign in to comment.