diff options
author | rowanbeentje <rowan@beent.je> | 2010-05-04 23:46:48 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2010-05-04 23:46:48 +0000 |
commit | b4648f71fc5d986672158dacae8c1180a8d12413 (patch) | |
tree | bc2feff89fdedd81639a2ed2dae59c2234936065 /Source/TableContent.m | |
parent | e1ddcc46b4beac645dd76ab40a85890c8a2795ab (diff) | |
download | sequelpro-b4648f71fc5d986672158dacae8c1180a8d12413.tar.gz sequelpro-b4648f71fc5d986672158dacae8c1180a8d12413.tar.bz2 sequelpro-b4648f71fc5d986672158dacae8c1180a8d12413.zip |
- Don't update table row count if table content is limited AND filtered; this addresses Issue #666
Diffstat (limited to 'Source/TableContent.m')
-rw-r--r-- | Source/TableContent.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/TableContent.m b/Source/TableContent.m index b78a6423..144f81de 100644 --- a/Source/TableContent.m +++ b/Source/TableContent.m @@ -2685,7 +2685,7 @@ maxNumRows = foundMaxRows; maxNumRowsIsEstimate = NO; } - } else if (!isInterruptedLoad && tableRowsCount < [prefs integerForKey:SPLimitResultsValue]) { + } else if (!isInterruptedLoad && !isFiltered && tableRowsCount < [prefs integerForKey:SPLimitResultsValue]) { maxNumRows = foundMaxRows; maxNumRowsIsEstimate = NO; } |