From ae842f47c99d460749cefb29d679168ab5e5c98c Mon Sep 17 00:00:00 2001 From: ChelSlava Date: Sun, 29 Mar 2026 15:59:46 +0300 Subject: [PATCH] Add Info text to View All Tags dialog Add help text to the View All Tags (F7) dialog to inform users about available actions: right-click for context menu and click on headers to change sorting. Closes #2518 --- src/robotide/ui/tagdialogs.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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))