diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-09-21 07:59:43 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-09-21 07:59:43 +0000 |
commit | 4c7cd2cc663f6839821a0683547421e5793acb33 (patch) | |
tree | e701065eaab1e76280fff780cc0dab9152e06fd9 /Source | |
parent | 5b66adf4b687c872b9ad6223779c9f2e1256c12a (diff) | |
download | sequelpro-4c7cd2cc663f6839821a0683547421e5793acb33.tar.gz sequelpro-4c7cd2cc663f6839821a0683547421e5793acb33.tar.bz2 sequelpro-4c7cd2cc663f6839821a0683547421e5793acb33.zip |
• reverted to rev 2630 which removed an 'unnecessary' [table reloadData]; there're instances where one has to reload the table explicitly
Diffstat (limited to 'Source')
-rw-r--r-- | Source/SPQueryController.m | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/SPQueryController.m b/Source/SPQueryController.m index c7f79e1f..eb0e8a1a 100644 --- a/Source/SPQueryController.m +++ b/Source/SPQueryController.m @@ -996,6 +996,7 @@ static SPQueryController *sharedQueryController = nil; if (allowConsoleUpdate && [[self window] isVisible]) { [consoleTableView noteNumberOfRowsChanged]; [consoleTableView scrollRowToVisible:([messagesVisibleSet count] - 1)]; + [consoleTableView reloadData]; } } |