Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/robotide/ui/tagdialogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -61,6 +61,7 @@ def _build_ui(self):
self.SetSizer(wx.BoxSizer(wx.VERTICAL))
self._build_notebook()
self._build_tag_lister()
self._build_info_text()
self._build_controls()
self._build_footer()
self.CenterOnParent()
Expand All @@ -81,6 +82,11 @@ def _build_tag_lister(self):
sizer_tag_vw.Add(self._tags_list, 1, wx.ALL | wx.EXPAND, 3)
self._notebook.AddPage(panel_tag_vw, _("The List"))

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_controls(self):
self._clear_button = ButtonWithHandler(self, _('Refresh'), handler=self.on_clear)
self._show_tagged_tests_button = ButtonWithHandler(self, _('Included Tag Search'),
Expand Down
Loading