From 5ed3a8a80ef9d70b64acb91c1abd58f4aa8f07ec Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Wed, 7 Sep 2011 21:00:49 -0500 Subject: [PATCH] still want to get this working one day... --- src/ScreenSelectMusic.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/ScreenSelectMusic.cpp b/src/ScreenSelectMusic.cpp index 404f06a882..2e3e3b03b4 100644 --- a/src/ScreenSelectMusic.cpp +++ b/src/ScreenSelectMusic.cpp @@ -501,6 +501,21 @@ void ScreenSelectMusic::Input( const InputEventPlus &input ) return; // ignore // todo: Allow mousewheel to scroll MusicWheel -aj + /* + if( input.DeviceI.device == DEVICE_MOUSE ) + { + if( input.DeviceI.button == MOUSE_WHEELUP ) + { + MESSAGEMAN->Broadcast( "PreviousSong" ); + m_MusicWheel.Move( -1 ); + } + else if( input.DeviceI.button == MOUSE_WHEELDOWN ) + { + MESSAGEMAN->Broadcast( "NextSong" ); + m_MusicWheel.Move( +1 ); + } + } + */ if( USE_PLAYER_SELECT_MENU ) {