From 707c9cbb87c8535ad8f8f7328ac272391d45edb1 Mon Sep 17 00:00:00 2001 From: Colin Wallace Date: Sat, 20 Jun 2015 23:12:22 +0000 Subject: [PATCH] Put opening brace on its own line --- src/gui/editors/PianoRoll.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gui/editors/PianoRoll.cpp b/src/gui/editors/PianoRoll.cpp index 7537c3cff..11e744809 100644 --- a/src/gui/editors/PianoRoll.cpp +++ b/src/gui/editors/PianoRoll.cpp @@ -3344,7 +3344,8 @@ void PianoRoll::wheelEvent(QWheelEvent * we ) void PianoRoll::focusOutEvent( QFocusEvent * ) { - if( hasValidPattern() ) { + if( hasValidPattern() ) + { for( int i = 0; i < NumKeys; ++i ) { m_pattern->instrumentTrack()->pianoModel()->midiEventProcessor()->processInEvent( MidiEvent( MidiNoteOff, -1, i, 0 ) );