Skip to content

Commit 94b40a5

Browse files
committed
Update column and row calculations in EventTranslatorEditor for correct stream monitor layout
1 parent 365eadf commit 94b40a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/Processors/EventTranslator/EventTranslatorEditor.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ void EventTranslatorEditor::updateSettings()
5656
{
5757
const uint16 streamId = stream->getStreamId();
5858

59-
int column = streamCount % 5;
60-
int row = streamCount / 5;
59+
int column = streamCount % 6;
60+
int row = streamCount / 6;
6161

6262
const Array<EventChannel*> eventChannels = proc->getDataStream (streamId)->getEventChannels();
6363

0 commit comments

Comments
 (0)