diff options
author | Eddie Ehlin <eddiex@eddiex.se> | 2013-02-11 20:52:48 +0100 |
---|---|---|
committer | Eddie Ehlin <eddiex@eddiex.se> | 2013-02-11 20:52:48 +0100 |
commit | ea5bce8099d735b0058139589b1f1bbe5afb7272 (patch) | |
tree | 6b8bba56483edf8013029efd3d79d70da1ee12b5 /iBean | |
parent | d1a80793aab82ebe7d81491be6dd59398fb61ab7 (diff) | |
download | iBean-ea5bce8099d735b0058139589b1f1bbe5afb7272.tar.gz iBean-ea5bce8099d735b0058139589b1f1bbe5afb7272.zip |
Bug fix: When setting bean collection list in edit mode and switch to another view and back, it is still in edit mode (as the other table views in the app).
Diffstat (limited to 'iBean')
3 files changed, 1 insertions, 4 deletions
diff --git a/iBean/iBean.xcodeproj/project.xcworkspace/xcuserdata/eddiex.xcuserdatad/UserInterfaceState.xcuserstate b/iBean/iBean.xcodeproj/project.xcworkspace/xcuserdata/eddiex.xcuserdatad/UserInterfaceState.xcuserstate Binary files differindex c07ccef..3a993b4 100644 --- a/iBean/iBean.xcodeproj/project.xcworkspace/xcuserdata/eddiex.xcuserdatad/UserInterfaceState.xcuserstate +++ b/iBean/iBean.xcodeproj/project.xcworkspace/xcuserdata/eddiex.xcuserdatad/UserInterfaceState.xcuserstate diff --git a/iBean/iBean.xcodeproj/xcuserdata/eddiex.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist b/iBean/iBean.xcodeproj/xcuserdata/eddiex.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist index eb98d15..c2f8927 100644 --- a/iBean/iBean.xcodeproj/xcuserdata/eddiex.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist +++ b/iBean/iBean.xcodeproj/xcuserdata/eddiex.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist @@ -143,7 +143,7 @@ endingColumnNumber = "9223372036854775807" startingLineNumber = "18" endingLineNumber = "18" - landmarkName = "+bottomShadowToTableView:" + landmarkName = "+bottomShadowForTableView:" landmarkType = "5"> </FileBreakpoint> </FileBreakpoints> diff --git a/iBean/iBean/BeanCollectionListViewController.m b/iBean/iBean/BeanCollectionListViewController.m index ebcb7e7..3f84aed 100644 --- a/iBean/iBean/BeanCollectionListViewController.m +++ b/iBean/iBean/BeanCollectionListViewController.m @@ -161,9 +161,6 @@ { [self.tableView reloadData]; } - - //Reset editing state - self.editing = NO; } /***************************************************** |