From c6c7439566e9e2931ff2984482c0a22f7ea986fa Mon Sep 17 00:00:00 2001 From: David Capello Date: Wed, 6 May 2015 16:58:32 -0300 Subject: [PATCH] Close autocomplete popup when we change the active folder in FileSelector --- src/app/ui/file_selector.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/ui/file_selector.cpp b/src/app/ui/file_selector.cpp index 5f5e5b8b7..e5f666d93 100644 --- a/src/app/ui/file_selector.cpp +++ b/src/app/ui/file_selector.cpp @@ -775,6 +775,9 @@ void FileSelector::onFileListCurrentFolderChanged() updateLocation(); updateNavigationButtons(); + + // Close the autocomplete popup just in case it's open. + m_fileName->closeListBox(); } } // namespace app