diff options
author | rowanbeentje <rowan@beent.je> | 2009-02-18 23:33:42 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2009-02-18 23:33:42 +0000 |
commit | e4c5cc4181a9807c718b6c1c517b8adee31064a1 (patch) | |
tree | 449d509d9a78a8e7b5193317b4cec3f59bc815d6 | |
parent | 3ca168863ddbdc3ac3bba0cfd9a64ce262cbfea8 (diff) | |
download | sequelpro-e4c5cc4181a9807c718b6c1c517b8adee31064a1.tar.gz sequelpro-e4c5cc4181a9807c718b6c1c517b8adee31064a1.tar.bz2 sequelpro-e4c5cc4181a9807c718b6c1c517b8adee31064a1.zip |
- Ensure that the button controlling whether all data should be edited in a sheet shows its state correctly (fixes Issue #169)
- Fixes editing with "Don't load blob and text fields" preference enabled by fixing an incorrect method call
-rw-r--r-- | Interfaces/English.lproj/DBView.xib | 4 | ||||
-rw-r--r-- | Source/TableContent.m | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Interfaces/English.lproj/DBView.xib b/Interfaces/English.lproj/DBView.xib index 30e81caa..98620b04 100644 --- a/Interfaces/English.lproj/DBView.xib +++ b/Interfaces/English.lproj/DBView.xib @@ -8,7 +8,7 @@ <string key="IBDocument.HIToolboxVersion">353.00</string> <object class="NSMutableArray" key="IBDocument.EditedObjectIDs"> <bool key="EncodedWithXMLCoder">YES</bool> - <integer value="4485"/> + <integer value="27"/> </object> <object class="NSArray" key="IBDocument.PluginDependencies"> <bool key="EncodedWithXMLCoder">YES</bool> @@ -2808,7 +2808,7 @@ <string key="NSContents"/> <reference key="NSSupport" ref="244931163"/> <reference key="NSControlView" ref="976558465"/> - <int key="NSButtonFlags">-2032926465</int> + <int key="NSButtonFlags">-1227620097</int> <int key="NSButtonFlags2">34</int> <object class="NSCustomResource" key="NSNormalImage"> <string key="NSClassName">NSImage</string> diff --git a/Source/TableContent.m b/Source/TableContent.m index 04df0953..d8a0f761 100644 --- a/Source/TableContent.m +++ b/Source/TableContent.m @@ -1355,7 +1355,7 @@ - (BOOL)tableContainsBlobOrTextColumns { int i; - NSArray *tableColumns = [tableDataInstance tableColumns]; + NSArray *tableColumns = [tableDataInstance columns]; NSString *columnTypeGrouping; for ( i = 0 ; i < [tableColumns count]; i++ ) { |