We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83a5b60 commit e1d700fCopy full SHA for e1d700f
src/robotide/ui/keywordsearch.py
@@ -291,7 +291,9 @@ def _get_search_text(self):
291
return self._search_control.GetValue().lower()
292
293
def _update_keyword_selection(self):
294
- if self._keywords and self._last_selected_kw not in self._keywords:
+ if not self._keywords:
295
+ return
296
+ if self._last_selected_kw is None or self._last_selected_kw not in self._keywords:
297
self._last_selected_kw = self._keywords[0]
298
self._update_details()
299
0 commit comments