diff --git a/src/robotide/ui/tagdialogs.py b/src/robotide/ui/tagdialogs.py index 7ebda87c0..c066023f7 100644 --- a/src/robotide/ui/tagdialogs.py +++ b/src/robotide/ui/tagdialogs.py @@ -23,7 +23,7 @@ from .. import utils from ..controller.ctrlcommands import ChangeTag from ..publish import RideOpenTagSearch -from ..widgets import ButtonWithHandler, PopupMenuItems, RIDEDialog +from ..widgets import ButtonWithHandler, PopupMenuItems, RIDEDialog, HelpLabel _ = wx.GetTranslation # To keep linter/code analyser happy builtins.__dict__['_'] = wx.GetTranslation @@ -62,9 +62,14 @@ def _build_ui(self): self._build_notebook() self._build_tag_lister() self._build_controls() + self._build_info_text() self._build_footer() self.CenterOnParent() + def _build_info_text(self): + info_text = HelpLabel(self, _("Info: Right-click on a tag for actions. Click on headers to change sorting.")) + self.Sizer.Add(info_text, 0, wx.ALL, 3) + def _build_tag_lister(self): panel_tag_vw = wx.Panel(self._notebook) panel_tag_vw.SetBackgroundColour(Colour(self.color_background))