Skip to content

Commit

Permalink
Merge pull request #2805 from HelioGuilherme66/misc_bugs
Browse files Browse the repository at this point in the history
Fix missing context menu items in Keywords in Tree
  • Loading branch information
HelioGuilherme66 authored Jun 15, 2024
2 parents a60bb53 + dd31360 commit 636c594
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/robotide/ui/treenodehandlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -738,8 +738,8 @@ class UserKeywordHandler(_TestOrUserKeywordHandler):

def __init__(self, *args):
_TestOrUserKeywordHandler.__init__(self, *args)
self._actions = _TestOrUserKeywordHandler._actions + [_('Find Usages')]
self._actions_nt = _TestOrUserKeywordHandler._actions_nt + [LABEL_FIND_USAGES]
self._actions = self._actions + [_('Find Usages')]
self._actions_nt = self._actions_nt + [LABEL_FIND_USAGES]

def _add_copy_to_tree(self, parent_node, copied):
self._tree.add_keyword(parent_node, copied)
Expand Down

0 comments on commit 636c594

Please sign in to comment.