aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/SPTableContent.m2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/SPTableContent.m b/Source/SPTableContent.m
index 87526837..77033212 100644
--- a/Source/SPTableContent.m
+++ b/Source/SPTableContent.m
@@ -1153,6 +1153,7 @@
NSString *taskString;
if ([tableDocumentInstance isWorking]) return;
+ if (![self saveRowOnDeselect]) return;
[self setPaginationViewVisibility:FALSE];
// Select the correct pagination value
@@ -1275,6 +1276,7 @@
*/
- (IBAction) navigatePaginationFromButton:(id)sender
{
+ if (![self saveRowOnDeselect]) return;
if (sender == paginationPreviousButton) {
if (contentPage <= 1) return;
[paginationPageField setIntegerValue:(contentPage - 1)];