mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-10 07:04:36 +00:00
BFRES : Fix material right click menu not applying shortcuts
This commit is contained in:
parent
d0fc51c57d
commit
15e6c1c7fd
1 changed files with 13 additions and 10 deletions
|
@ -89,24 +89,27 @@ namespace Bfres.Structs
|
|||
|
||||
}
|
||||
}
|
||||
public class FMAT : STGenericMaterial
|
||||
public class FMAT : STGenericMaterial, IContextMenuNode
|
||||
{
|
||||
public FMAT()
|
||||
{
|
||||
Checked = true;
|
||||
ImageKey = "material";
|
||||
SelectedImageKey = "material";
|
||||
}
|
||||
|
||||
ContextMenuStrip = new STContextMenuStrip();
|
||||
public ToolStripItem[] GetContextMenuItems()
|
||||
{
|
||||
List<ToolStripItem> Items = new List<ToolStripItem>();
|
||||
Items.Add(new ToolStripMenuItem("Export", null, ExportAction, Keys.Control | Keys.E));
|
||||
Items.Add(new ToolStripMenuItem("Replace", null, ReplaceAction, Keys.Control | Keys.R));
|
||||
Items.Add(new ToolStripSeparator());
|
||||
Items.Add(new ToolStripMenuItem("Copy", null, CopyAction, Keys.Control | Keys.C));
|
||||
Items.Add(new ToolStripMenuItem("Rename", null, RenameAction, Keys.Control | Keys.N));
|
||||
Items.Add(new ToolStripSeparator());
|
||||
Items.Add(new ToolStripMenuItem("Delete", null, DeleteAction, Keys.Control | Keys.Delete));
|
||||
|
||||
ContextMenuStrip.Items.Add(new ToolStripMenuItem("Export", null, ExportAction, Keys.Control | Keys.E));
|
||||
ContextMenuStrip.Items.Add(new ToolStripMenuItem("Replace", null, ReplaceAction, Keys.Control | Keys.R));
|
||||
|
||||
ContextMenuStrip.Items.Add(new ToolStripSeparator());
|
||||
ContextMenuStrip.Items.Add(new ToolStripMenuItem("Copy", null, CopyAction, Keys.Control | Keys.C));
|
||||
ContextMenuStrip.Items.Add(new ToolStripMenuItem("Rename", null, RenameAction, Keys.Control | Keys.N));
|
||||
ContextMenuStrip.Items.Add(new ToolStripSeparator());
|
||||
ContextMenuStrip.Items.Add(new ToolStripMenuItem("Delete", null, DeleteAction, Keys.Control | Keys.N));
|
||||
return Items.ToArray();
|
||||
}
|
||||
|
||||
protected void ExportAction(object sender, EventArgs args) { Export(); }
|
||||
|
|
Loading…
Reference in a new issue