summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClayton Smith <argilo@gmail.com>2018-09-25 08:45:23 -0400
committerMarcus Müller <marcus@hostalia.de>2018-11-01 13:52:50 +0100
commit63d4bb4b47a2b66be05b16cf0164f3cd57ca92fa (patch)
tree306dc11f53bd79510083061e225c16ebcae7908b
parent3b6069e7f93fbb28f270127f22d6992e87885658 (diff)
Remove "open recent" button from toolbar.
-rw-r--r--grc/gui/Bars.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/grc/gui/Bars.py b/grc/gui/Bars.py
index beefb4e03e..a42c136918 100644
--- a/grc/gui/Bars.py
+++ b/grc/gui/Bars.py
@@ -50,8 +50,9 @@ LIST_NAME = [
# The list of actions for the toolbar.
TOOLBAR_LIST = [
- [(Actions.FLOW_GRAPH_NEW, 'flow_graph_new_type'), Actions.FLOW_GRAPH_OPEN,
- (Actions.FLOW_GRAPH_OPEN_RECENT, 'flow_graph_recent'), Actions.FLOW_GRAPH_SAVE, Actions.FLOW_GRAPH_CLOSE],
+ [(Actions.FLOW_GRAPH_NEW, 'flow_graph_new_type'),
+ (Actions.FLOW_GRAPH_OPEN, 'flow_graph_recent'),
+ Actions.FLOW_GRAPH_SAVE, Actions.FLOW_GRAPH_CLOSE],
[Actions.TOGGLE_FLOW_GRAPH_VAR_EDITOR, Actions.FLOW_GRAPH_SCREEN_CAPTURE],
[Actions.BLOCK_CUT, Actions.BLOCK_COPY, Actions.BLOCK_PASTE, Actions.ELEMENT_DELETE],
[Actions.FLOW_GRAPH_UNDO, Actions.FLOW_GRAPH_REDO],