From f183e5efdaefe57d526182181460acc08ada8b84 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 21 Jul 2005 01:22:10 +0000 Subject: [PATCH] highlight the section being recorded; this makes it clear why you can't insert notes during the lead-in and shows when the region will end --- stepmania/src/ScreenEdit.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/stepmania/src/ScreenEdit.cpp b/stepmania/src/ScreenEdit.cpp index 1bcadf7fc7..469397fe4d 100644 --- a/stepmania/src/ScreenEdit.cpp +++ b/stepmania/src/ScreenEdit.cpp @@ -1867,6 +1867,10 @@ void ScreenEdit::TransitionEditState( EditState em ) // initialize m_NoteFieldRecord m_NoteDataRecord.CopyAll( m_NoteDataEdit ); + // highlight the section being recorded + m_NoteFieldRecord.m_iBeginMarker = m_iStartPlayingAt; + m_NoteFieldRecord.m_iEndMarker = m_iStopPlayingAt; + break; } }