aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPCustomQuery.m
diff options
context:
space:
mode:
authorAbhi Beckert <me@abhibeckert.com>2016-06-05 10:49:30 +1000
committerAbhi Beckert <me@abhibeckert.com>2016-06-05 10:49:30 +1000
commitd2762d63153241b8194fefab28039730ae0187e9 (patch)
treeb7c1f63ab1d1d3d7c4d6a6307fe934f83d63c742 /Source/SPCustomQuery.m
parent84b40f5fb614594ed02228c1ff8f09935e67e25a (diff)
downloadsequelpro-d2762d63153241b8194fefab28039730ae0187e9.tar.gz
sequelpro-d2762d63153241b8194fefab28039730ae0187e9.tar.bz2
sequelpro-d2762d63153241b8194fefab28039730ae0187e9.zip
#2414 fix crash hovering mouse over removed table column header
Diffstat (limited to 'Source/SPCustomQuery.m')
-rw-r--r--Source/SPCustomQuery.m1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/SPCustomQuery.m b/Source/SPCustomQuery.m
index 822348be..4150d5a4 100644
--- a/Source/SPCustomQuery.m
+++ b/Source/SPCustomQuery.m
@@ -1670,6 +1670,7 @@
// Remove all existing columns from the table
theColumns = [customQueryView tableColumns];
while ([theColumns count]) {
+ [NSArrayObjectAtIndex(theColumns, 0) setHeaderToolTip:nil]; // prevent crash #2414
[customQueryView removeTableColumn:NSArrayObjectAtIndex(theColumns, 0)];
}