diff options
author | Bibiko <bibiko@eva.mpg.de> | 2009-04-06 15:47:20 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2009-04-06 15:47:20 +0000 |
commit | 16aee03a9c48ffdaf33fd3f2c99f7b5a933ca0ee (patch) | |
tree | 84955e2c83372f5805cd1afa64f7e6565c377f91 /Source/TableContent.h | |
parent | 2c5cc993e46a39e8ee15d82e21e88eaa7d5d602d (diff) | |
download | sequelpro-16aee03a9c48ffdaf33fd3f2c99f7b5a933ca0ee.tar.gz sequelpro-16aee03a9c48ffdaf33fd3f2c99f7b5a933ca0ee.tar.bz2 sequelpro-16aee03a9c48ffdaf33fd3f2c99f7b5a933ca0ee.zip |
• FIXED: "Limit from" NSStepper retains the old value if the new value would be greater than the total number of rows of the current table
• FIXED: if the user enters into "Limit from" a number which is greater than the total number of rows of the current table, show the last pref's "limitRowsValue" number of rows instead
• FIXED: if the user has already filtered the current table by specifying "Limit from" > 1 and afterwards the user applied a new filter the filtering will be repeated for LIMIT 0, "limitRowsValue" if nothing was found
Diffstat (limited to 'Source/TableContent.h')
-rw-r--r-- | Source/TableContent.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/TableContent.h b/Source/TableContent.h index 644a6b86..cc242aba 100644 --- a/Source/TableContent.h +++ b/Source/TableContent.h @@ -64,7 +64,7 @@ NSString *compareType, *sortField; BOOL isEditingRow, isEditingNewRow, isSavingRow, isDesc, setLimit; NSUserDefaults *prefs; - int numRows, currentlyEditingRow; + int numRows, currentlyEditingRow, maxNumRowsOfCurrentTable; bool areShowingAllRows; } |