summaryrefslogtreecommitdiff
path: root/grc/gui/Actions.py
diff options
context:
space:
mode:
Diffstat (limited to 'grc/gui/Actions.py')
-rw-r--r--grc/gui/Actions.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/grc/gui/Actions.py b/grc/gui/Actions.py
index e96fb4d276..284c78f8fc 100644
--- a/grc/gui/Actions.py
+++ b/grc/gui/Actions.py
@@ -261,7 +261,7 @@ BLOCK_PASTE = Action(
keypresses=(gtk.keysyms.v, gtk.gdk.CONTROL_MASK),
)
ERRORS_WINDOW_DISPLAY = Action(
- label='_Errors',
+ label='Flowgraph _Errors',
tooltip='View flow graph errors',
stock_id=gtk.STOCK_DIALOG_ERROR,
)
@@ -354,3 +354,8 @@ BUSSIFY_SINKS = Action(
tooltip='Gang sink ports into a single bus port',
stock_id=gtk.STOCK_JUMP_TO,
)
+XML_PARSER_ERRORS_DISPLAY = Action(
+ label='_Parser Errors',
+ tooltip='View errors that occured while parsing XML files',
+ stock_id=gtk.STOCK_DIALOG_ERROR,
+)