Skip to content
This repository was archived by the owner on Jan 27, 2023. It is now read-only.

Commit 159d231

Browse files
Show messagebox when there are no results (instead of quick panel)
1 parent 5b5e875 commit 159d231

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

search_in_project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def perform_search(self, text):
6363
self.window.show_quick_panel(self.results, self.goto_result)
6464
else:
6565
self.results = []
66-
self.window.show_quick_panel(["No results"], None)
66+
sublime.message_dialog('No results')
6767
except Exception as e:
6868
self.results = []
6969
sublime.error_message("%s running search engine %s:"%(e.__class__.__name__,self.engine_name) + "\n" + str(e))

0 commit comments

Comments
 (0)