Skip to content
Snippets Groups Projects
Commit 317f5ecf authored by Vadim ProductEngine's avatar Vadim ProductEngine
Browse files

STORM-529 FIXED Added Undo/Redo items to the Build menu.

parent 73962e21
No related branches found
No related tags found
No related merge requests found
...@@ -976,6 +976,29 @@ ...@@ -976,6 +976,29 @@
parameter="perm_prefs" /> parameter="perm_prefs" />
</menu_item_call> </menu_item_call>
</menu> </menu>
<menu_item_separator/>
<menu_item_call
enabled="false"
label="Undo"
name="Undo"
shortcut="control|Z">
<on_click
function="Edit.Undo"
userdata="" />
<on_enable
function="Edit.EnableUndo" />
</menu_item_call>
<menu_item_call
enabled="false"
label="Redo"
name="Redo"
shortcut="control|Y">
<on_click
function="Edit.Redo"
userdata="" />
<on_enable
function="Edit.EnableRedo" />
</menu_item_call>
</menu> </menu>
<menu <menu
create_jump_keys="true" create_jump_keys="true"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment