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 ) {