aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPTextView.m
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2011-07-27 00:43:43 +0000
committerrowanbeentje <rowan@beent.je>2011-07-27 00:43:43 +0000
commit189b2854d91b34a309ab93bfe4a06d1bd225a5b1 (patch)
tree9975bd858bca126628f7b6302f3b20cb8acc97fd /Source/SPTextView.m
parentbf22d64062ed030d75fe0c69c8997d74ce072ff1 (diff)
downloadsequelpro-189b2854d91b34a309ab93bfe4a06d1bd225a5b1.tar.gz
sequelpro-189b2854d91b34a309ab93bfe4a06d1bd225a5b1.tar.bz2
sequelpro-189b2854d91b34a309ab93bfe4a06d1bd225a5b1.zip
- Prevent error bell when using the enter key to initiate a connection when keyboard focus is on the favorites outline view (Issue #1072)
- Don't initiate a connection when the currently selected favorite is clicked again slowly - Match compiler #ifdef around braces to imrpove Xcode 3 file parsing
Diffstat (limited to 'Source/SPTextView.m')
-rw-r--r--Source/SPTextView.m6
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/SPTextView.m b/Source/SPTextView.m
index b08db401..3bcf72f5 100644
--- a/Source/SPTextView.m
+++ b/Source/SPTextView.m
@@ -2415,7 +2415,13 @@ NSInteger _alphabeticSort(id string1, id string2, void *reverse)
}
return;
}
+
+// Let Xcode 3 match braces correctly...
+#ifndef SP_REFACTOR
}
+#else
+ }
+#endif
// break down the undo grouping level for better undo behavior
[self breakUndoCoalescing];