From 0b3737cfc4c7c82310fe43b998dae322489aea28 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Fri, 10 Feb 2012 13:41:40 -0500 Subject: [PATCH] [editorKeysounds] New menu to test. --- src/ScreenEdit.cpp | 9 ++++++++- src/ScreenEdit.h | 1 + 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/ScreenEdit.cpp b/src/ScreenEdit.cpp index 9cf82c20ed..9054148f96 100644 --- a/src/ScreenEdit.cpp +++ b/src/ScreenEdit.cpp @@ -605,7 +605,9 @@ static MenuDef g_AreaMenu( MenuRowDef(ScreenEdit::last_second_at_beat, "Designate last second at current beat", true, EditMode_Full, true, true, 0, NULL ), MenuRowDef( ScreenEdit::undo, "Undo", true, EditMode_Practice, true, true, 0, NULL ), MenuRowDef(ScreenEdit::clear_clipboard, "Clear clipboard", true, - EditMode_Practice, true, true, 0, NULL ) + EditMode_Practice, true, true, 0, NULL ), + MenuRowDef(ScreenEdit::modify_keysounds_at_row, "Modify Keysounds at current beat", + true, EditMode_Full, true, true, 0, NULL) ); @@ -4463,6 +4465,11 @@ void ScreenEdit::HandleAreaMenuChoice( AreaMenuChoice c, const vector &iAns m_Clipboard.ClearAll(); break; } + case modify_keysounds_at_row: + { + // Nothing yet. + break; + } }; if( bSaveUndo ) diff --git a/src/ScreenEdit.h b/src/ScreenEdit.h index ecac3673dc..94206f427f 100644 --- a/src/ScreenEdit.h +++ b/src/ScreenEdit.h @@ -435,6 +435,7 @@ public: last_second_at_beat, undo, clear_clipboard, /**< Clear the clipboards. */ + modify_keysounds_at_row, /**< Modify the keysounds at this row. */ NUM_AREA_MENU_CHOICES }; void HandleAlterMenuChoice(AlterMenuChoice c,