if a different window was selected and you hold control and then click in the piano roll, it didn't do selection like it should (FIXED)
git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1938 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
@@ -16,6 +16,8 @@
|
||||
- added a note detuning tool
|
||||
- fixed mouse cursor glitch when mousing over notes
|
||||
- shift+drag didn't update beat+bassline (FIXED)
|
||||
- if a different window was selected and you hold control and then
|
||||
click in the piano roll, it didn't do selection like it should (FIXED)
|
||||
|
||||
* src/tracks/instrument_track.cpp:
|
||||
fixed crash in processAudioBuffer when notePlayHandle was NULL
|
||||
|
||||
1
TODO
1
TODO
@@ -52,7 +52,6 @@
|
||||
- add FLAC as export-format?
|
||||
|
||||
Andrew Kelley's todo:
|
||||
- if a different window is selected and you hold control and then click in the piano roll, it doesn't do selection like it should
|
||||
- when looking at a piano roll, if the song is playing that pattern, move the position ticker to where it should be
|
||||
- multiview button - show notes from every instrument in the current beat+bassline with different colors
|
||||
- undo/redo for piano roll
|
||||
|
||||
@@ -1271,6 +1271,16 @@ void pianoRoll::mousePressEvent( QMouseEvent * _me )
|
||||
noteUnderMouse()->editDetuningPattern();
|
||||
return;
|
||||
}
|
||||
|
||||
// if holding control, go to selection mode
|
||||
if( _me->modifiers() & Qt::ControlModifier && m_editMode != ModeSelect )
|
||||
{
|
||||
m_ctrlMode = m_editMode;
|
||||
m_editMode = ModeSelect;
|
||||
QApplication::changeOverrideCursor(
|
||||
QCursor( Qt::ArrowCursor ) );
|
||||
update();
|
||||
}
|
||||
|
||||
// keep track of the point where the user clicked down
|
||||
if( _me->button() == Qt::LeftButton )
|
||||
|
||||
Reference in New Issue
Block a user