From 7398b59d3d6b90a76c2d6a1ebad6859af5ce0501 Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Wed, 2 Jun 2010 22:05:39 -0500 Subject: [PATCH] modify the order of the main ScreenEdit menu (escape) items --- src/ScreenEdit.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ScreenEdit.cpp b/src/ScreenEdit.cpp index 8f7fcef933..f70e9ea905 100644 --- a/src/ScreenEdit.cpp +++ b/src/ScreenEdit.cpp @@ -501,13 +501,13 @@ static MenuDef g_EditHelp( static MenuDef g_MainMenu( "ScreenMiniMenuMainMenu", + MenuRowDef( ScreenEdit::play_whole_song, "Play whole song", true, EditMode_Practice, true, true, 0, NULL ), + MenuRowDef( ScreenEdit::play_current_beat_to_end, "Play current beat to end", true, EditMode_Practice, true, true, 0, NULL ), + MenuRowDef( ScreenEdit::save, "Save", true, EditMode_Home, true, true, 0, NULL ), MenuRowDef( ScreenEdit::play_selection, "Play selection", true, EditMode_Practice, true, true, 0, NULL ), MenuRowDef( ScreenEdit::set_selection_start, "Set selection start", true, EditMode_Practice, true, true, 0, NULL ), MenuRowDef( ScreenEdit::set_selection_end, "Set selection end", true, EditMode_Practice, true, true, 0, NULL ), MenuRowDef( ScreenEdit::edit_steps_information, "Edit steps information", true, EditMode_Practice, true, true, 0, NULL ), - MenuRowDef( ScreenEdit::play_whole_song, "Play whole song", true, EditMode_Practice, true, true, 0, NULL ), - MenuRowDef( ScreenEdit::play_current_beat_to_end, "Play current beat to end", true, EditMode_Practice, true, true, 0, NULL ), - MenuRowDef( ScreenEdit::save, "Save", true, EditMode_Home, true, true, 0, NULL ), MenuRowDef( ScreenEdit::revert_to_last_save, "Revert to last save", true, EditMode_Home, true, true, 0, NULL ), MenuRowDef( ScreenEdit::revert_from_disk, "Revert from disk", true, EditMode_Full, true, true, 0, NULL ), MenuRowDef( ScreenEdit::options, "Editor options", true, EditMode_Practice, true, true, 0, NULL ),