diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-03-31 18:14:24 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-03-31 18:14:24 +0000 |
commit | ef9f2de4c69410664f5c75db6b512138c7df72aa (patch) | |
tree | b41a3eeb2af8998b2dae24eaaf900e236dafa1b5 /Source/SPNarrowDownCompletion.m | |
parent | ea5088aa123745243ea6d93f684d0471be83b324 (diff) | |
download | sequelpro-ef9f2de4c69410664f5c75db6b512138c7df72aa.tar.gz sequelpro-ef9f2de4c69410664f5c75db6b512138c7df72aa.tar.bz2 sequelpro-ef9f2de4c69410664f5c75db6b512138c7df72aa.zip |
• fixed issue for refreshing the completion list after finishing the structure querying
- set variable directly and call [self close] explicitly
Diffstat (limited to 'Source/SPNarrowDownCompletion.m')
-rw-r--r-- | Source/SPNarrowDownCompletion.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPNarrowDownCompletion.m b/Source/SPNarrowDownCompletion.m index 0b77e359..e635958f 100644 --- a/Source/SPNarrowDownCompletion.m +++ b/Source/SPNarrowDownCompletion.m @@ -178,9 +178,9 @@ - (void)reInvokeCompletion { - [theView setCompletionWasReinvokedAutomatically:YES]; - closeMe = YES; + [theView setCompletionIsOpen:NO]; [theView doCompletionByUsingSpellChecker:dictMode fuzzyMode:fuzzyMode autoCompleteMode:NO]; + [self close]; } - (id)initWithItems:(NSArray*)someSuggestions alreadyTyped:(NSString*)aUserString staticPrefix:(NSString*)aStaticPrefix |