diff options
author | Max <post@wickenrode.com> | 2014-12-30 02:30:30 +0100 |
---|---|---|
committer | Max <post@wickenrode.com> | 2014-12-30 02:30:30 +0100 |
commit | 2d8fd9c8eff0afca2cab9b8bbb791a0cdf1c583a (patch) | |
tree | 853a0058e6cbba9faa3dedd2573c9dd077c5d53d | |
parent | ae8a9465306eaee5bb1478b74057e1bdf540b1db (diff) | |
download | sequelpro-2d8fd9c8eff0afca2cab9b8bbb791a0cdf1c583a.tar.gz sequelpro-2d8fd9c8eff0afca2cab9b8bbb791a0cdf1c583a.tar.bz2 sequelpro-2d8fd9c8eff0afca2cab9b8bbb791a0cdf1c583a.zip |
Fix a minor case of "bg thread updating UI"
-rw-r--r-- | Source/SPCustomQuery.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPCustomQuery.m b/Source/SPCustomQuery.m index 216cafa8..8b201776 100644 --- a/Source/SPCustomQuery.m +++ b/Source/SPCustomQuery.m @@ -916,7 +916,7 @@ return; } - [customQueryView reloadData]; + [[customQueryView onMainThread] reloadData]; // Restore the result view origin if appropriate if (!NSEqualRects(selectionViewportToRestore, NSZeroRect)) { |